(ctx context.Context, name string)
| 139 | return r.Storage.Store(ctx, key, value) |
| 140 | } |
| 141 | func (r *recordingStorage) Unlock(ctx context.Context, name string) error { |
| 142 | r.record("Unlock", name) |
| 143 | return r.Storage.Unlock(ctx, name) |
| 144 | } |
| 145 | |
| 146 | type recordedCall struct { |
| 147 | name string |