I have a use case where I need to specify a list of test classes to run.
Each test class has x number of tests. I need to make custom test suites which run only the specified test classes.
Is there anyway to do this? Will they still show in the Test Runner?
Yes you can use
Categoriesdocs:Example:
And the dotnet test cli has a
--filterflag:The give an example only for mstest Example:
but it also tell that it supports nunit filtering with
FullyQualifiedName, Name, Priority, TestCategorytry that out.