(t *testing.T)
| 57 | } |
| 58 | |
| 59 | func TestWaitCommandFails(t *testing.T) { |
| 60 | _, err := invokeProxyCommand([]string{ |
| 61 | "wait", |
| 62 | // assuming default host and port |
| 63 | "--max=100ms", |
| 64 | }) |
| 65 | if err == nil { |
| 66 | t.Fatal("wait should fail when endpoint does not respond") |
| 67 | } |
| 68 | } |
nothing calls this directly
no test coverage detected