(t *testing.T)
| 115 | } |
| 116 | |
| 117 | func TestContextRequestWithTimeout(t *testing.T) { |
| 118 | s := RunDefaultServer() |
| 119 | defer s.Shutdown() |
| 120 | |
| 121 | nc := NewDefaultConnection(t) |
| 122 | defer nc.Close() |
| 123 | |
| 124 | testContextRequestWithTimeout(t, nc) |
| 125 | } |
| 126 | |
| 127 | func TestOldContextRequestWithTimeout(t *testing.T) { |
| 128 | s := RunDefaultServer() |
nothing calls this directly
no test coverage detected