shekharpro / mb-unit

Automatically exported from code.google.com/p/mb-unit
0 stars 0 forks source link

Importances are showing up as descriptions in Icarus Test Explorer #444

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago

Original comment by grahamr...@gmail.com on 11 May 2009 at 10:48

GoogleCodeExporter commented 8 years ago

Original comment by grahamr...@gmail.com on 13 May 2009 at 6:04