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
{
}
E.g. 2 tests should pass when
AbstractTests
orAbstractTests.Test
is targeted.