| 10 | ) |
| 11 | |
| 12 | type MockCacheClient struct { |
| 13 | mock.Mock |
| 14 | BaseCache cache.CacheClient |
| 15 | ReadDelay time.Duration |
| 16 | WriteDelay time.Duration |
| 17 | } |
| 18 | |
| 19 | func (c *MockCacheClient) Rename(oldKey string, newKey string, expiration time.Duration) error { |
| 20 | args := c.Called(oldKey, newKey, expiration) |
nothing calls this directly
no outgoing calls
no test coverage detected