| 106 | var _ Storage = (*memoryStorage)(nil) |
| 107 | |
| 108 | type recordingStorage struct { |
| 109 | Storage |
| 110 | calls []recordedCall |
| 111 | } |
| 112 | |
| 113 | func (r *recordingStorage) Delete(ctx context.Context, key string) error { |
| 114 | r.record("Delete", key) |
nothing calls this directly
no outgoing calls
no test coverage detected