(t *testing.T)
| 9 | ) |
| 10 | |
| 11 | func TestObjectLockingStorage(t *testing.T) { |
| 12 | r := NewVersionedMapStorage(nil) |
| 13 | if r == nil { |
| 14 | t.Errorf("unexpected result: %v", r) |
| 15 | } |
| 16 | |
| 17 | VerifyStorage(testlogging.Context(t), t, r, blob.PutOptions{ |
| 18 | RetentionMode: blob.Governance, |
| 19 | RetentionPeriod: 24 * time.Hour, |
| 20 | }) |
| 21 | } |
nothing calls this directly
no test coverage detected