diff options
author | ecaiyanlinux <martin.c.yan@est.tech> | 2021-03-02 14:42:24 +0000 |
---|---|---|
committer | ecaiyanlinux <martin.c.yan@est.tech> | 2021-03-02 19:38:57 +0000 |
commit | 800c482f30b5b51f1a66c1022ee118dfb2e59904 (patch) | |
tree | 5ce71258d1ac5517b115eb4206bc27e633267236 | |
parent | 1668b5a62512993b0ae0650bdbff20ad67749fa5 (diff) |
Add testcase to CSIT
Add deployment of NONRTRIC without SDNC to CSIT
Signed-off-by: ecaiyanlinux <martin.c.yan@est.tech>
Change-Id: Iffcff58893f613d50e5698ac951ce9b95d93aa49
Issue-ID: CCSDK-3140
-rw-r--r-- | csit/tests/healthcheck/test2.robot | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/csit/tests/healthcheck/test2.robot b/csit/tests/healthcheck/test2.robot new file mode 100644 index 00000000..02334593 --- /dev/null +++ b/csit/tests/healthcheck/test2.robot @@ -0,0 +1,16 @@ +*** Settings *** +Library OperatingSystem +Library Process + +*** Variables *** + +${pms_a1sim} ${SCRIPTS}/healthcheck/test/pms_a1sim.sh + + +*** Test Cases *** + +Health check test case for NONRTRIC + [Documentation] Deploy NONRTRIC without SDNC + Start Process ${pms_a1sim} >> log_hc.txt shell=yes + ${cli_cmd_output}= Wait For Process timeout=600 + Should Be Equal as Integers ${cli_cmd_output.rc} 0 |