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.0.33
Edition
04/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 -f="Category=A"
    
  2. To execute all TestFixtures containing an A in their category name, use the contain filter:

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

    apax test -f="Category!=A"
    

The negation works also for the contain filter.