summaryrefslogtreecommitdiffstats
path: root/storage/src/tests/persistence/common/filestortestfixture.h
diff options
context:
space:
mode:
Diffstat (limited to 'storage/src/tests/persistence/common/filestortestfixture.h')
-rw-r--r--storage/src/tests/persistence/common/filestortestfixture.h19
1 files changed, 8 insertions, 11 deletions
diff --git a/storage/src/tests/persistence/common/filestortestfixture.h b/storage/src/tests/persistence/common/filestortestfixture.h
index c46f9de24fc..a8c32a409ec 100644
--- a/storage/src/tests/persistence/common/filestortestfixture.h
+++ b/storage/src/tests/persistence/common/filestortestfixture.h
@@ -9,10 +9,11 @@
#include <tests/common/dummystoragelink.h>
#include <tests/common/teststorageapp.h>
#include <tests/common/testhelper.h>
+#include <vespa/vespalib/gtest/gtest.h>
namespace storage {
-class FileStorTestFixture : public CppUnit::TestFixture
+class FileStorTestFixture : public ::testing::Test
{
public:
static spi::LoadType defaultLoadType;
@@ -26,8 +27,8 @@ public:
typedef uint32_t DocumentIndex;
typedef uint64_t PutTimestamp;
- void setUp() override;
- void tearDown() override;
+ void SetUp() override;
+ void TearDown() override;
void setupPersistenceThreads(uint32_t diskCount);
void createBucket(const document::BucketId& bid);
bool bucketExistsInDb(const document::BucketId& bucket) const;
@@ -53,7 +54,7 @@ public:
void
expectNoReplies(DummyStorageLink& link) {
- CPPUNIT_ASSERT_EQUAL(size_t(0), link.getNumReplies());
+ EXPECT_EQ(0, link.getNumReplies());
}
template <typename ReplyType>
@@ -65,12 +66,10 @@ public:
api::StorageReply* reply(
dynamic_cast<ReplyType*>(link.getReply(0).get()));
if (reply == 0) {
- std::ostringstream ss;
- ss << "got unexpected reply "
- << link.getReply(0)->toString(true);
- CPPUNIT_FAIL(ss.str());
+ FAIL() << "got unexpected reply "
+ << link.getReply(0)->toString(true);
}
- CPPUNIT_ASSERT_EQUAL(result, reply->getResult().getResult());
+ EXPECT_EQ(result, reply->getResult().getResult());
}
template <typename ReplyType>
@@ -89,14 +88,12 @@ public:
struct TestFileStorComponents
{
private:
- TestName _testName;
FileStorTestFixture& _fixture;
public:
DummyStorageLink top;
FileStorManager* manager;
TestFileStorComponents(FileStorTestFixture& fixture,
- const char* testName,
const StorageLinkInjector& i = NoOpStorageLinkInjector());
void sendDummyGet(const document::BucketId& bid);