What steps will reproduce the problem?
1. Create a testfixture with one test that has an Importance attribute
(any importance will do) assigned to it.
2. Build the test dll and open it in Icarus
3. In the test explorer, select Importance.
What is the expected output? What do you see instead?
Instead of seeing the assigned importances, the tree does not show them.
If you Descriptions in the test explorer, you will see the importances
listed there.
What version of the product are you using? On what operating system?
I have tried this on both Windows XP SP3 and Vista SP1 using the
GallioBundle 3.0.6.763
Please provide any additional information below.
Here is example code:
using System;
using MbUnit.Framework;
namespace Test
{
[Importance(Importance.Critical)]
public class ImportantFixture
{
[Test]
[Importance(Importance.Serious)]
[Description("MyDescription")]
public void ImportantTest()
{
}
}
}
Original issue reported on code.google.com by david.ma...@gmail.com on 8 May 2009 at 12:46
Original issue reported on code.google.com by
david.ma...@gmail.com
on 8 May 2009 at 12:46