(ctx context.Context)
| 529 | } |
| 530 | |
| 531 | func (m *MockDataSource) GetMatchingRules(ctx context.Context) ([]*model.MatchingRule, error) { |
| 532 | args := m.Called(ctx) |
| 533 | return args.Get(0).([]*model.MatchingRule), args.Error(1) |
| 534 | } |
| 535 | |
| 536 | func (m *MockDataSource) GetMatchingRule(ctx context.Context, id string) (*model.MatchingRule, error) { |
| 537 | args := m.Called(ctx, id) |