Closed vbreuss closed 1 month ago
I often want to group tests in a nested class and would expect the class name in the test explorer to reflect the full name, e.g.
public class OuterTests { public class InnerTests { [Test] public async Task SomeTest() { // Tests something } } }
should be displayed as OuterTests+InnerTests.SomeTest, but in the test explorer the OuterTest class is ignored:
OuterTests+InnerTests.SomeTest
OuterTest
I often want to group tests in a nested class and would expect the class name in the test explorer to reflect the full name, e.g.
should be displayed as
OuterTests+InnerTests.SomeTest
, but in the test explorer theOuterTest
class is ignored: