X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=csit%2Ftests%2Fhealthcheck%2Ftest1.robot;fp=csit%2Ftests%2Fhealthcheck%2Ftest1.robot;h=69c0e07193a600f769683c7f75d361bbfa8ceed0;hb=0c4500afd225801c940b309a2615b1afe3c505c8;hp=0000000000000000000000000000000000000000;hpb=161e9a0c026d5a7fee595ef870e662ae9123f4f0;p=ccsdk%2Fdistribution.git diff --git a/csit/tests/healthcheck/test1.robot b/csit/tests/healthcheck/test1.robot new file mode 100644 index 00000000..69c0e071 --- /dev/null +++ b/csit/tests/healthcheck/test1.robot @@ -0,0 +1,16 @@ +*** Settings *** +Library OperatingSystem +Library Process + +*** Variables *** + +${health_check} ${SCRIPTS}/healthcheck/health_check.sh + + +*** Test Cases *** +Health check test case for CCSDK + [Documentation] Health check + ${result_hc}= Run Process bash ${health_check} > log_hc.txt shell=yes + Should Be Equal As Integers ${result_hc.rc} 0 + +