MudassarRasool / mb-unit

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

Resharper plugin does not detect inheriting categories #891

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Create a category attribute as follows
public class CoreTestAttribute : CategoryAttribute
    {
        public CoreTestAttribute()
            : base("Core")
        {
        }
    }
2.Decorate a test with it
3.Run all tests with resharpe
4.Select Categories in the resharper unit test window

The expected behaviour is to categorize this test in the Core category.

What happens is that its listing it as Uncategorized.

If I decorate the test with Category("Core") then it's correctly listed.

This is with Gallio 3.3.610

Original issue reported on code.google.com by konstant...@gmail.com on 28 Jun 2012 at 4:30