(t *testing.T)
| 97 | } |
| 98 | |
| 99 | func TestContextWithStepPanicsOnNil(t *testing.T) { |
| 100 | t.Parallel() |
| 101 | |
| 102 | require.Panics(t, func() { |
| 103 | _ = chatdebug.ContextWithStep(context.Background(), nil) |
| 104 | }) |
| 105 | } |
nothing calls this directly
no test coverage detected