diff options
Diffstat (limited to 'tests/ccsdk-oran')
-rw-r--r-- | tests/ccsdk-oran/polmansuite/__init__.robot | 2 | ||||
-rw-r--r-- | tests/ccsdk-oran/polmansuite/test.robot | 16 |
2 files changed, 18 insertions, 0 deletions
diff --git a/tests/ccsdk-oran/polmansuite/__init__.robot b/tests/ccsdk-oran/polmansuite/__init__.robot new file mode 100644 index 00000000..bf52713b --- /dev/null +++ b/tests/ccsdk-oran/polmansuite/__init__.robot @@ -0,0 +1,2 @@ +*** Settings *** +Documentation Non-RT RIC Policy Management - polmansuite diff --git a/tests/ccsdk-oran/polmansuite/test.robot b/tests/ccsdk-oran/polmansuite/test.robot new file mode 100644 index 00000000..be396287 --- /dev/null +++ b/tests/ccsdk-oran/polmansuite/test.robot @@ -0,0 +1,16 @@ +*** Settings *** +Library OperatingSystem +Library Process + +*** Test Cases *** + +Functional Test Case 1 + [Documentation] Functional Test Case 1 - FTC1 + Start Process ${AUTOTEST_ROOT}/FTC1.sh remote auto-clean shell=true cwd=${AUTOTEST_ROOT} + ${cli_cmd_output}= Wait For Process timeout=3600 + Should Be Equal as Integers ${cli_cmd_output.rc} 0 + ${ResultFileContent}= Get File ${AUTOTEST_ROOT}/.resultFTC1.txt + Should Be Equal As Integers ${ResultFileContent} 0 + + + |