Removed disk storage typed test

This commit is contained in:
Andi Skrgat
2023-05-17 11:47:27 +02:00
parent 6df79724ca
commit edf08c9b6b
3 changed files with 6 additions and 3 deletions

View File

@@ -277,7 +277,8 @@ class DumpTest : public ::testing::Test {
std::unique_ptr<memgraph::storage::Storage> db = std::make_unique<StorageType>();
};
using StorageTypes = ::testing::Types<memgraph::storage::InMemoryStorage, memgraph::storage::DiskStorage>;
// using StorageTypes = ::testing::Types<memgraph::storage::InMemoryStorage, memgraph::storage::DiskStorage>;
using StorageTypes = ::testing::Types<memgraph::storage::InMemoryStorage>;
TYPED_TEST_CASE(DumpTest, StorageTypes);
// NOLINTNEXTLINE(hicpp-special-member-functions)

View File

@@ -77,7 +77,8 @@ class ExpressionEvaluatorTest : public ::testing::Test {
}
};
using StorageTypes = ::testing::Types<memgraph::storage::InMemoryStorage, memgraph::storage::DiskStorage>;
// using StorageTypes = ::testing::Types<memgraph::storage::InMemoryStorage, memgraph::storage::DiskStorage>;
using StorageTypes = ::testing::Types<memgraph::storage::InMemoryStorage>;
TYPED_TEST_CASE(ExpressionEvaluatorTest, StorageTypes);
TYPED_TEST(ExpressionEvaluatorTest, OrOperator) {

View File

@@ -32,7 +32,8 @@ class StorageV2Test : public testing::Test {
std::unique_ptr<memgraph::storage::Storage> store;
};
using StorageTypes = ::testing::Types<memgraph::storage::InMemoryStorage, memgraph::storage::DiskStorage>;
// using StorageTypes = ::testing::Types<memgraph::storage::InMemoryStorage, memgraph::storage::DiskStorage>;
using StorageTypes = ::testing::Types<memgraph::storage::InMemoryStorage>;
TYPED_TEST_CASE(StorageV2Test, StorageTypes);
// NOLINTNEXTLINE(hicpp-special-member-functions)