Filter options - Manual - AxUnit-ST - AxUnit ST documentation package - AxUnit-ST,

AxUnit-ST CLI Tool (test)

Portfolio
SIMATIC AX
Product
AxUnit-ST
Software version
8.3.9
Edition
07/2025
Language
English (original)
Package Name
@ax/axunitst-docs

For example, you have multiple TestFixtures assigned to different categories A, AB and C.

  1. To execute all TestFixtures assigned to the category A, use the equal filter:

    apax test --filter "Category=A"
    
  2. To execute all TestFixtures containing an A in their category name, use the contain filter:

    apax test --filter "Category~A"
    
  3. To execute all TestFixtures, that are not assigned to the category A, use the not filter:

    apax test --filter "Category!=A"
    

The negation works also for the contain filter.