Multiple test categories #1204
Answered
by
thomhurst
ledjon-behluli
asked this question in
Q&A
-
if i have something like this:
I can run it like this: dotnet run -c Release -v minimal --treenode-filter ////[Category=Offender] How would the cmd line look like if I wanted to run tests which have multiple categories like this:
much thanks |
Beta Was this translation helpful? Give feedback.
Answered by
thomhurst
Nov 17, 2024
Replies: 1 comment 1 reply
-
You want to run tests that have two categories? That'd be:
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ledjon-behluli
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You want to run tests that have two categories?
That'd be:
dotnet run -c Release -v minimal --treenode-filter /*/*/*/*[(Category=Offender)&(Category=BVT)]