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