summaryrefslogtreecommitdiffstats
path: root/storage/src/tests/distributor/mapbucketdatabasetest.cpp
blob: 609db4de6964298e02a96bf88dcbe7910d892aa5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

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

namespace storage::distributor {

#ifdef INSTANTIATE_TEST_SUITE_P
INSTANTIATE_TEST_SUITE_P(MapDatabase, BucketDatabaseTest,
                        ::testing::Values(std::make_shared<MapBucketDatabase>()));
#else
INSTANTIATE_TEST_CASE_P(MapDatabase, BucketDatabaseTest,
                        ::testing::Values(std::make_shared<MapBucketDatabase>()));
#endif

}