Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Library OperatingSystem |
Stanislav Chlebec | 050ef54 | 2018-10-03 08:45:16 +0200 | [diff] [blame] | 3 | Library String |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 4 | |
| 5 | *** Test Cases *** |
| 6 | APPC Netstat |
| 7 | [Documentation] Checking the active ports |
Stanislav Chlebec | 050ef54 | 2018-10-03 08:45:16 +0200 | [diff] [blame] | 8 | ${output}= Run netstat -a | grep -E ":8282 " | grep LISTEN |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 9 | Log To Console ${output} |
Stanislav Chlebec | 050ef54 | 2018-10-03 08:45:16 +0200 | [diff] [blame] | 10 | ${line_count}= Get Line Count ${output} |
| 11 | Should Be Equal As Strings ${line_count} 1 |