(t testing.TB)
| 44 | } |
| 45 | |
| 46 | func setupTestDBAllowConflicts(t testing.TB) (*Database, context.Context) { |
| 47 | dbcOptions := DatabaseContextOptions{ |
| 48 | AllowConflicts: base.Ptr(true), |
| 49 | CacheOptions: base.Ptr(DefaultCacheOptions()), |
| 50 | } |
| 51 | return SetupTestDBWithOptions(t, dbcOptions) |
| 52 | } |
| 53 | |
| 54 | func setupTestDBForBucket(t testing.TB, bucket base.Bucket) (*Database, context.Context) { |
| 55 | cacheOptions := DefaultCacheOptions() |
no test coverage detected