I'm using xUnit with the built in Text Explorer in visual studio 2012. It would be nice to scope the name of the test with the name of the class so if I have for example
namespace Foo.Bar {
class CatTests {
[Fact]
public void Test1(){
}
}
}
I would see in the test explorer
Foo.Bar.CatTests.Test1
as the name of the test. Is this possible in any way? At the moment I only see
Test1
which is a pain if I have lots of Test1 cases spread across multiple namespaces and test classes.