nunit / nunit3-tdnet-adapter

NUnit 3.x adapter for TestDrivent.NET
https://TestDriven.NET
1 stars 4 forks source link

Add support for executing tests in concrete sub-classes when abstract class is targeted #5

Open jcansdale opened 8 years ago

jcansdale commented 8 years ago

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
    {
    }