( t *testing.T, db *dbmock.MockStore, runID uuid.UUID, chatID uuid.UUID, op Operation, )
| 99 | } |
| 100 | |
| 101 | func expectCreateStep( |
| 102 | t *testing.T, |
| 103 | db *dbmock.MockStore, |
| 104 | runID uuid.UUID, |
| 105 | chatID uuid.UUID, |
| 106 | op Operation, |
| 107 | ) uuid.UUID { |
| 108 | t.Helper() |
| 109 | |
| 110 | return expectCreateStepNumber(t, db, runID, chatID, 1, op) |
| 111 | } |
| 112 | |
| 113 | func expectUpdateStep( |
| 114 | t *testing.T, |
no test coverage detected