(ctx context.Context, keys []string, opts ...Option)
| 65 | } |
| 66 | |
| 67 | func (m *MockCache) GetMulti(ctx context.Context, keys []string, opts ...Option) map[string][]byte { |
| 68 | result, _ := m.GetMultiWithError(ctx, keys, opts...) |
| 69 | return result |
| 70 | } |
| 71 | |
| 72 | func (m *MockCache) GetMultiWithError(_ context.Context, keys []string, _ ...Option) (map[string][]byte, error) { |
| 73 | m.mu.Lock() |
nothing calls this directly
no test coverage detected