(ctx context.Context, key string)
| 185 | } |
| 186 | |
| 187 | func (m *InstrumentedMockCache) Delete(ctx context.Context, key string) error { |
| 188 | m.deleteCount.Inc() |
| 189 | return m.cache.Delete(ctx, key) |
| 190 | } |
| 191 | |
| 192 | func (m *InstrumentedMockCache) GetItems() map[string]Item { |
| 193 | return m.cache.GetItems() |