()
| 13 | } |
| 14 | |
| 15 | func newMockMemcache() *mockMemcache { |
| 16 | return &mockMemcache{ |
| 17 | contents: map[string][]byte{}, |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | func (m *mockMemcache) GetMulti(_ context.Context, keys []string, _ ...memcache.Option) (map[string]*memcache.Item, error) { |
| 22 | m.RLock() |
no outgoing calls
no test coverage detected