(t *testing.T)
| 387 | } |
| 388 | |
| 389 | func TestContextRequestWithDeadline(t *testing.T) { |
| 390 | s := RunDefaultServer() |
| 391 | defer s.Shutdown() |
| 392 | |
| 393 | nc := NewDefaultConnection(t) |
| 394 | defer nc.Close() |
| 395 | |
| 396 | testContextRequestWithDeadline(t, nc) |
| 397 | } |
| 398 | |
| 399 | func TestOldContextRequestWithDeadline(t *testing.T) { |
| 400 | s := RunDefaultServer() |
nothing calls this directly
no test coverage detected