blob: 1adb9a6b3689d10895640046c120df079d064324 [file] [log] [blame]
ramu.n519f54d2017-09-16 16:25:35 +05301*** Settings ***
2Library OperatingSystem
3Library Process
4
5*** Variables ***
6
7${health_check} ${SCRIPTS}/health_check.sh
8
9
10*** Test Cases ***
11Health check test case for SDNC
12 [Documentation] Health check
13 ${result_hc}= Run Process bash ${health_check} > log_hc.txt shell=yes
14 Should Be Equal As Integers ${result_hc.rc} 0
15
16