NUNIT3-CONSOLE excludes a specific test category

The old NUnit 2 runner had a parameter /excludeto exclude tests with a specific attribute Category. Does anyone know if the NUnit3 console supports this feature?

.\nunit3-console.exe --helpdoes not specify an exception parameter. I can only see the parameter Where, can it be used for this purpose?

+4
source share
1 answer

Description of the language of choice can be found in this link . Based on this, you can exclude the category through --where "cat != YourCategoryToExclude".

+4
source

Source: https://habr.com/ru/post/1688781/


All Articles