(t *testing.T)
| 101 | // func TestClientCancelInproc(t *testing.T) { testClientCancel("inproc", t) } |
| 102 | func TestClientCancelWebsocket(t *testing.T) { testClientCancel("ws", t) } |
| 103 | func TestClientCancelHTTP(t *testing.T) { testClientCancel("http", t) } |
| 104 | func TestClientCancelIPC(t *testing.T) { testClientCancel("ipc", t) } |
| 105 | |
| 106 | // This test checks that requests made through CallContext can be canceled by canceling |
nothing calls this directly
no test coverage detected