Removed disk storage typed test
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user