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
source
share