(t *testing.T)
| 89 | } |
| 90 | |
| 91 | func TestContextWithRunPanicsOnNil(t *testing.T) { |
| 92 | t.Parallel() |
| 93 | |
| 94 | require.Panics(t, func() { |
| 95 | _ = chatdebug.ContextWithRun(context.Background(), nil) |
| 96 | }) |
| 97 | } |
| 98 | |
| 99 | func TestContextWithStepPanicsOnNil(t *testing.T) { |
| 100 | t.Parallel() |
nothing calls this directly
no test coverage detected