X-Git-Url: https://gerrit.onap.org/r/gitweb?p=ccsdk%2Fdistribution.git;a=blobdiff_plain;f=csit%2Ftests%2Fhealthcheck%2Ftest1.robot;fp=csit%2Ftests%2Fhealthcheck%2Ftest1.robot;h=69c0e07193a600f769683c7f75d361bbfa8ceed0;hp=0000000000000000000000000000000000000000;hb=a79c328f0fdf4ec9b2125a4b3df8192da3247f32;hpb=692718d5aca13ede537d44a89aafcb33bc80257a 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 + +