From 84abe64fb5fdc433f34debdc47286760edd674c5 Mon Sep 17 00:00:00 2001 From: gichan-jang Date: Mon, 27 Jul 2020 18:45:15 +0900 Subject: [PATCH] [TCM] Add yaml config file for android TCM(Test Case Manager) requires config.yaml file. The config file is written for android API test. Signed-off-by: gichan-jang --- .ahub/tcchecker-tca/config.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .ahub/tcchecker-tca/config.yaml diff --git a/.ahub/tcchecker-tca/config.yaml b/.ahub/tcchecker-tca/config.yaml new file mode 100644 index 0000000..d757317 --- /dev/null +++ b/.ahub/tcchecker-tca/config.yaml @@ -0,0 +1,28 @@ +version: 2 +test: + - name: JUNIT5_JAVA_EXAMPLE + testCaseLanguage: JAVA + testFW: JUNIT + testCaseFolder: + - ./api/android/api/src/androidTest/java/org/nnsuite/nnstreamer + + testFile: + - extension: java + starts: + - APITest + + testCase: + - condition: + - annotation: + match: + - '@Test' + + negativeTestCase: + - condition: + - testName: + ends: + - _n + + positiveTestCase: + - condition: + - inverse: negativeTestCase -- 2.7.4