diff options
author | Dan Timoney <dtimoney@att.com> | 2020-12-10 15:03:26 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-12-10 15:03:26 +0000 |
commit | a79c328f0fdf4ec9b2125a4b3df8192da3247f32 (patch) | |
tree | 822cf5d92ea05e7554e22708f25949ea0e07091b /csit/tests/healthcheck | |
parent | 692718d5aca13ede537d44a89aafcb33bc80257a (diff) | |
parent | 0c4500afd225801c940b309a2615b1afe3c505c8 (diff) |
Merge "Move CSIT to ccsdk/distribution repo"
Diffstat (limited to 'csit/tests/healthcheck')
-rw-r--r-- | csit/tests/healthcheck/__init__.robot | 2 | ||||
-rw-r--r-- | csit/tests/healthcheck/test1.robot | 16 |
2 files changed, 18 insertions, 0 deletions
diff --git a/csit/tests/healthcheck/__init__.robot b/csit/tests/healthcheck/__init__.robot new file mode 100644 index 00000000..1259b890 --- /dev/null +++ b/csit/tests/healthcheck/__init__.robot @@ -0,0 +1,2 @@ +*** Settings *** +Documentation CCSDK - healthcheck 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 + + |