(ctx context.Context, keys []string, opts ...Option)
| 236 | } |
| 237 | |
| 238 | func (m *ErroringMockCache) GetMultiWithError(ctx context.Context, keys []string, opts ...Option) (map[string][]byte, error) { |
| 239 | result, _ := m.MockCache.GetMultiWithError(ctx, keys, opts...) |
| 240 | return result, m.GetMultiErr |
| 241 | } |
no test coverage detected