-
Notifications
You must be signed in to change notification settings - Fork 4
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 nested classes when parent class is targeted #4
Comments
NUnit will eventually support this directly, but there's no schedule for it. See nunit/nunit#25 |
Thanks for the heads up. We just need to make sure that if a parent class and nested classes are targeted, it doesn't execute the nested classes twice (breaking the code I'm about to push). This probably won't be an issue, depending on how the test filters work. |
So long as you use a filter it shouldn't be a problem. Selecting something multiple times won't get it running twice. |
E.g. allow the targeting of
ParentClass
:The text was updated successfully, but these errors were encountered: