( t *testing.T, db *dbmock.MockStore, runID uuid.UUID, chatID uuid.UUID, stepNumber int32, op Operation, )
| 78 | } |
| 79 | |
| 80 | func expectCreateStepNumber( |
| 81 | t *testing.T, |
| 82 | db *dbmock.MockStore, |
| 83 | runID uuid.UUID, |
| 84 | chatID uuid.UUID, |
| 85 | stepNumber int32, |
| 86 | op Operation, |
| 87 | ) uuid.UUID { |
| 88 | t.Helper() |
| 89 | |
| 90 | return expectCreateStepNumberWithRequestValidity( |
| 91 | t, |
| 92 | db, |
| 93 | runID, |
| 94 | chatID, |
| 95 | stepNumber, |
| 96 | op, |
| 97 | true, |
| 98 | ) |
| 99 | } |
| 100 | |
| 101 | func expectCreateStep( |
| 102 | t *testing.T, |
no test coverage detected