Remove obsolete unit test

This commit is contained in:
Ante Pušić 2024-01-05 00:20:27 +01:00
parent 6c2b448fe9
commit f0a2b67f33

View File

@ -1,4 +1,4 @@
// Copyright 2023 Memgraph Ltd.
// Copyright 2024 Memgraph Ltd.
//
// Use of this software is governed by the Business Source License
// included in the file licenses/BSL.txt; by using this file, you agree to be bound by the terms of the Business Source
@ -68,28 +68,6 @@ void TestIsPropertyEqual(const memgraph::storage::PropertyStore &store, memgraph
}
}
TEST(PropertyStore, SimpleExternallyStored) {
auto mock = memgraph::storage::ExternalStoreMock();
memgraph::storage::PropertyStore props;
auto prop = memgraph::storage::PropertyId::FromInt(42);
auto value = memgraph::storage::PropertyValue(42);
ASSERT_TRUE(props.SetProperty(prop, value, true, &mock));
ASSERT_EQ(props.GetProperty(prop, true, &mock), value);
ASSERT_TRUE(props.HasProperty(prop, true, &mock));
ASSERT_TRUE(props.SetProperty(prop, memgraph::storage::PropertyValue(), true, &mock));
ASSERT_TRUE(props.GetProperty(prop, true, &mock).IsNull());
ASSERT_FALSE(props.HasProperty(prop, true, &mock));
TestIsPropertyEqual(props, prop, memgraph::storage::PropertyValue());
}
TEST(PropertyStore, Simple) {
memgraph::storage::PropertyStore props;
auto prop = memgraph::storage::PropertyId::FromInt(42);