()
| 432 | } |
| 433 | |
| 434 | func (m *MockDataSource) GetAllIdentities() ([]model.Identity, error) { |
| 435 | args := m.Called() |
| 436 | return args.Get(0).([]model.Identity), args.Error(1) |
| 437 | } |
| 438 | |
| 439 | func (m *MockDataSource) GetAllIdentitiesPaginated(limit, offset int) ([]model.Identity, error) { |
| 440 | args := m.Called(limit, offset) |