(t *testing.T)
| 45 | } |
| 46 | |
| 47 | func TestContextTimeoutWithTimeout0(t *testing.T) { |
| 48 | t.Parallel() |
| 49 | assert.Panics(t, func() { |
| 50 | ContextTimeout(time.Duration(0)) |
| 51 | }) |
| 52 | } |
| 53 | |
| 54 | func TestContextTimeoutErrorOutInHandler(t *testing.T) { |
| 55 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…