summaryrefslogtreecommitdiffstats
path: root/storage/src/tests/distributor/btree_bucket_database_test.cpp
blob: c253a758f980408be9e216ccab3062f6cf1120ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2019 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/storage/bucketdb/btree_bucket_database.h>
#include <tests/distributor/bucketdatabasetest.h>

namespace storage::distributor {

INSTANTIATE_TEST_CASE_P(BTreeDatabase, BucketDatabaseTest,
                        ::testing::Values(std::make_shared<BTreeBucketDatabase>()));

}