You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
E.g. 2 tests should pass when AbstractTests or AbstractTests.Test is targeted.
public abstract class AbstractTests
{
[Test]
public void Test() { }
}
public class PassConcreteTests : AbstractTests
{
}
public class FailConcreteTests : AbstractTests
{
}
The text was updated successfully, but these errors were encountered:
…s targeted #4
Add support for executing tests in concrete sub-classes when abstract class is targeted #5
Add support for targeting generic test fixtures #6
E.g. 2 tests should pass when
AbstractTests
orAbstractTests.Test
is targeted.The text was updated successfully, but these errors were encountered: