| 8 | ) |
| 9 | |
| 10 | type MockClient struct { |
| 11 | data map[string]*Item |
| 12 | version uint64 |
| 13 | mutex sync.Mutex |
| 14 | forceGetMisses bool // return StatusKeyNotFound for all gets |
| 15 | forceSetInternalErrors bool // return StatusInternalError for all sets |
| 16 | forceFailEverything bool // return StatusInternalError for all functions |
| 17 | } |
| 18 | type Operation int |
| 19 | |
| 20 | const ( |
nothing calls this directly
no outgoing calls
no test coverage detected