Reporter | acl (jorgeburgos) |
---|---|
Created | Nov 30, 2010 4:06:49 AM |
Updated | Jan 2, 2012 12:46:56 PM |
Priority | Normal |
Type | Bug |
Fix versions | Next Major |
State | Submitted |
Assignee | Victor Kropp (victor.kropp) |
Subsystem | Unit Testing |
Affected versions | No Affected versions |
Fixed in build | No Fixed in build |
It's sometimes nice to be able to organise unit tests like this:
namespace Tests.FooNamespace
{
public class FooTests
{
[TestFixture]
public class ACollectionOfFooTests
{
[Test]
public void TestSomething() { etc }
}
[TestFixture]
public class AnotherCollectionOfFooTests
{
[Test]
public void TestSomething() { etc }
}
}
}
It would be good if the Resharper unit test runner showed the parent class names of the nested classes. Currently it looks like this:
- FooTests.AnotherCollectionOfFooTests
- TestSomething
namespace Tests.FooNamespace
{
public class FooTests
{
[TestFixture]
public class ACollectionOfFooTests
{
[Test]
public void TestSomething() { etc }
}
[TestFixture]
public class AnotherCollectionOfFooTests
{
[Test]
public void TestSomething() { etc }
}
}
}
It would be good if the Resharper unit test runner showed the parent class names of the nested classes. Currently it looks like this:
- Tests.FooNamespace
- ACollectionOfFooTests - TestSomething - AnotherCollectionOfFooTests - TestSomething With the parent classes it would look like this:
- Tests.FooNamespace
- TestSomething
- TestSomething