diff options
Diffstat (limited to 'xtesting/samples/testcases.yaml')
-rw-r--r-- | xtesting/samples/testcases.yaml | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/xtesting/samples/testcases.yaml b/xtesting/samples/testcases.yaml new file mode 100644 index 00000000..86b0d279 --- /dev/null +++ b/xtesting/samples/testcases.yaml @@ -0,0 +1,66 @@ +tiers: + - + name: samples + order: 1 + ci_loop: 'daily' + description : '' + testcases: + - + case_name: first + project_name: xtesting + criteria: 100 + blocking: true + clean_flag: false + description: '' + dependencies: + installer: '' + scenario: '' + run: + module: 'first' + class: 'Test' + + - + case_name: second + project_name: xtesting + criteria: 100 + blocking: true + clean_flag: false + description: '' + dependencies: + installer: '' + scenario: '' + run: + module: 'second' + class: 'Test' + + - + case_name: third + project_name: xtesting + criteria: 100 + blocking: true + clean_flag: false + description: '' + dependencies: + installer: '' + scenario: '' + run: + module: 'xtesting.core.feature' + class: 'BashFeature' + args: + cmd: 'echo -n Hello World; exit 0' + + - + case_name: fourth + project_name: xtesting + criteria: 100 + blocking: true + clean_flag: false + description: '' + dependencies: + installer: '' + scenario: '' + run: + module: 'xtesting.core.unit' + class: 'Suite' + args: + name: 'fourth' |