Test set (test suite)
Description
test: set `(mandatory) Property key and constant value to define the test yaml type as test set`
name: string `(mandatory) Name label of test set, used to trigger test set execution in cli client`
description: string `Description of test set`
parallel: boolean `if true, the execution of the tests are done in parallel. it will open as many threads as cases in the set unless you specify $PARALLEL_NUMBER in Global variables under the environment file`
cases: `(mandatory) list of test case names to be included in test set`
- string
...
Example
test: set
name: calls
description: GET and POST calls set
parallel: true
cases:
- getCalls
- postCalls