Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

SpecificationResult
@classnameRun every method in every class with 'classname' in the name.
%packRun every method in every class with 'pack' in the package name
$operationRun every class and method, but only execute operations named 'operation'
#method

Matches just the method name

%pack1@class1#method1$operation1Selects packages containing 'pack1', classes named 'class1', methods named 'method1', and only executes operations named 'operation1'
@classname and %packRun every method which matches both of the previous conditions. This is a compound statement.
<tag>Run the tag named 'tag' using the 'all' set.
<tag, fail>Run the tag named 'tag' using the 'fail' set.
[ aud ]Run every method in every class with the @JoinSuite tag with the name aud.

{ property: 'value' }

 

Run every method in all classes which contain an operation with a parameter named 'property' and the value 'value'

...