(ctx context.Context, key string, value interface{}, ttl time.Duration)
| 40 | } |
| 41 | |
| 42 | func (m *mockCacheRecon) Set(ctx context.Context, key string, value interface{}, ttl time.Duration) error { |
| 43 | m.data[key] = value |
| 44 | return nil |
| 45 | } |
| 46 | |
| 47 | func (m *mockCacheRecon) Get(ctx context.Context, key string, data interface{}) error { |
| 48 | if _, ok := m.data[key]; ok { |
nothing calls this directly
no outgoing calls
no test coverage detected