(ctx context.Context, key string)
| 218 | } |
| 219 | |
| 220 | func (s *contextRecorderStorage) GetWithContext(ctx context.Context, key string) ([]byte, error) { |
| 221 | s.gets = append(s.gets, contextRecordFrom(ctx, key)) |
| 222 | return s.failingCacheStorage.GetWithContext(ctx, key) |
| 223 | } |
| 224 | |
| 225 | func (s *contextRecorderStorage) SetWithContext(ctx context.Context, key string, val []byte, exp time.Duration) error { |
| 226 | s.sets = append(s.sets, contextRecordFrom(ctx, key)) |
nothing calls this directly
no test coverage detected