You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
483 B

1 year ago
---
test case: Both interface and key parameter are present
in:
interface: "127.0.0.1:10051"
ip: "127.0.0.1"
out:
return: "SUCCEED"
---
test case: Only interface is present
in:
interface: "127.0.0.1:10051"
ip: ""
out:
return: "SUCCEED"
---
test case: Only key parameter is present
in:
interface: ""
ip: "127.0.0.1"
out:
return: "SUCCEED"
---
test case: Both interface and key parameter are missing
in:
interface: ""
ip: ""
out:
return: "SYSINFO_RET_FAIL"
...