createTestStep is a thin helper that creates a debug step with step number 1 for the given run.
( t *testing.T, fixture testFixture, runID uuid.UUID, )
| 453 | // createTestStep is a thin helper that creates a debug step with |
| 454 | // step number 1 for the given run. |
| 455 | func createTestStep( |
| 456 | t *testing.T, |
| 457 | fixture testFixture, |
| 458 | runID uuid.UUID, |
| 459 | ) database.ChatDebugStep { |
| 460 | t.Helper() |
| 461 | return createTestStepN(t, fixture, runID, 1) |
| 462 | } |
| 463 | |
| 464 | // createTestStepN creates a debug step with the given step number. |
| 465 | func createTestStepN( |
no test coverage detected