(t *testing.T)
| 34 | } |
| 35 | |
| 36 | func TestRunFromContextAbsent(t *testing.T) { |
| 37 | t.Parallel() |
| 38 | |
| 39 | got, ok := chatdebug.RunFromContext(context.Background()) |
| 40 | require.False(t, ok) |
| 41 | require.Nil(t, got) |
| 42 | } |
| 43 | |
| 44 | func TestContextWithStepRoundTrip(t *testing.T) { |
| 45 | t.Parallel() |
nothing calls this directly
no test coverage detected