Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
jcansdale opened this issue Jul 17, 2016 · 0 comments

Comments

@jcansdale
Copy link
Contributor

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
    {
    }
jcansdale added a commit that referenced this issue Jul 18, 2016
…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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant