(t *testing.T)
| 186 | } |
| 187 | |
| 188 | func TestContextRequestWithTimeoutCanceled(t *testing.T) { |
| 189 | s := RunDefaultServer() |
| 190 | defer s.Shutdown() |
| 191 | |
| 192 | nc := NewDefaultConnection(t) |
| 193 | defer nc.Close() |
| 194 | |
| 195 | testContextRequestWithTimeoutCanceled(t, nc) |
| 196 | } |
| 197 | |
| 198 | func TestOldContextRequestWithTimeoutCanceled(t *testing.T) { |
| 199 | s := RunDefaultServer() |
nothing calls this directly
no test coverage detected