(t *testing.T)
| 319 | } |
| 320 | |
| 321 | func TestContextRequestWithCancel(t *testing.T) { |
| 322 | s := RunDefaultServer() |
| 323 | defer s.Shutdown() |
| 324 | |
| 325 | nc := NewDefaultConnection(t) |
| 326 | defer nc.Close() |
| 327 | |
| 328 | testContextRequestWithCancel(t, nc) |
| 329 | } |
| 330 | |
| 331 | func TestOldContextRequestWithCancel(t *testing.T) { |
| 332 | s := RunDefaultServer() |
nothing calls this directly
no test coverage detected