(t testing.TB, bucket base.Bucket)
| 52 | } |
| 53 | |
| 54 | func setupTestDBForBucket(t testing.TB, bucket base.Bucket) (*Database, context.Context) { |
| 55 | cacheOptions := DefaultCacheOptions() |
| 56 | dbcOptions := DatabaseContextOptions{ |
| 57 | CacheOptions: &cacheOptions, |
| 58 | } |
| 59 | return SetupTestDBForBucketWithOptions(t, bucket, dbcOptions) |
| 60 | } |
| 61 | |
| 62 | func setupTestDBForBucketDefaultCollection(t testing.TB, bucket *base.TestBucket) (*Database, context.Context) { |
| 63 | cacheOptions := DefaultCacheOptions() |
no test coverage detected