(t *testing.T)
| 70 | } |
| 71 | |
| 72 | func TestWrapModel_NilService(t *testing.T) { |
| 73 | t.Parallel() |
| 74 | |
| 75 | model := &chattest.FakeModel{ProviderName: "provider", ModelName: "model"} |
| 76 | wrapped := WrapModel(model, nil, RecorderOptions{}) |
| 77 | require.Same(t, model, wrapped) |
| 78 | } |
| 79 | |
| 80 | func TestNextStepNumber_Concurrent(t *testing.T) { |
| 81 | t.Parallel() |
nothing calls this directly
no test coverage detected