For example, you have multiple TestFixtures assigned to different categories A, AB and C.
-
To execute all TestFixtures assigned to the category
A, use theequalfilter:apax test --filter "Category=A" -
To execute all TestFixtures containing an
Ain their category name, use thecontainfilter:apax test --filter "Category~A" -
To execute all TestFixtures, that are not assigned to the category
A, use thenotfilter:apax test --filter "Category!=A"
The negation works also for the contain filter.