(ctx context.Context, keys []string, opts ...Option)
| 172 | } |
| 173 | |
| 174 | func (m *InstrumentedMockCache) GetMultiWithError(ctx context.Context, keys []string, opts ...Option) (map[string][]byte, error) { |
| 175 | m.fetchCount.Inc() |
| 176 | return m.cache.GetMultiWithError(ctx, keys, opts...) |
| 177 | } |
| 178 | |
| 179 | func (m *InstrumentedMockCache) Name() string { |
| 180 | return m.cache.Name() |
nothing calls this directly
no test coverage detected