NUnit categories that are not displayed in Visual Studio

I want to customize my function tests, so I use the Category nunit attribute, for example:

[Test, Category("Cat1")]
public void SomeMethod() { }

[Test, Category("Cat2")]
public void AnotherMethod() { }

But in Visual Studio, categories are not displayed, all I see are the default values ​​for grouping by duration or test results. I use:

  • NUnit 2.6.4
  • Visual studio 2012
  • NUnit Test Adapter 2.0.0.0

What am I missing? It seems like it should be no problem

+4
source share
1 answer

Traits, Category. , Visual Studio, , 1. , MS, , TestAdapter, , NUnit.

+7

All Articles