()
| 42 | } |
| 43 | |
| 44 | func newMockCache() *mockCache { |
| 45 | return &mockCache{data: make(map[string]interface{})} |
| 46 | } |
| 47 | |
| 48 | func (m *mockCache) Set(ctx context.Context, key string, value interface{}, ttl time.Duration) error { |
| 49 | m.data[key] = value |
no outgoing calls
no test coverage detected