fix: tests

This commit is contained in:
Ferdinand Mütsch 2022-12-30 13:41:27 +01:00
parent 731598fa38
commit f755275309
2 changed files with 746 additions and 740 deletions

File diff suppressed because it is too large Load Diff

View File

@ -54,6 +54,11 @@ func (m *UserServiceMock) GetAllByReports(b bool) ([]*models.User, error) {
return args.Get(0).([]*models.User), args.Error(1)
}
func (m *UserServiceMock) GetUserByStripeCustomerId(s string) (*models.User, error) {
args := m.Called(s)
return args.Get(0).(*models.User), args.Error(1)
}
func (m *UserServiceMock) GetActive(b bool) ([]*models.User, error) {
args := m.Called(b)
return args.Get(0).([]*models.User), args.Error(1)