( t *testing.T, db *dbmock.MockStore, ownerID uuid.UUID, )
| 28 | func (e *testError) Error() string { return e.message } |
| 29 | |
| 30 | func expectDebugLoggingEnabled( |
| 31 | t *testing.T, |
| 32 | db *dbmock.MockStore, |
| 33 | ownerID uuid.UUID, |
| 34 | ) { |
| 35 | t.Helper() |
| 36 | |
| 37 | db.EXPECT().GetChatDebugLoggingAllowUsers(gomock.Any()).Return(true, nil) |
| 38 | db.EXPECT().GetUserChatDebugLoggingEnabled(gomock.Any(), ownerID).Return(true, nil) |
| 39 | } |
| 40 | |
| 41 | func expectCreateStepNumberWithRequestValidity( |
| 42 | t *testing.T, |
no test coverage detected