Skip to content
Snippets Groups Projects
Commit f17a3636 authored by Daniel Hornung's avatar Daniel Hornung
Browse files

TEST: Commented tests for Property copy constructor.

parent 12e47bd5
No related branches found
No related tags found
1 merge request!12F consolidation
Pipeline #12211 failed
This commit is part of merge request !12. Comments created here will be created in the context of that merge request.
......@@ -398,8 +398,11 @@ TEST(test_entity, test_property_iterator) {
ASSERT_EQ(entity.GetProperties().size(), 5);
int counter = 0;
for (auto &property : entity.GetProperties()) {
// TODO Copy constructor was deleted
// auto nonref_property = entity.GetProperties().at(counter);
auto name = "PROPERTY-" + std::to_string(counter);
EXPECT_EQ(property.GetName(), name);
// EXPECT_EQ(nonref_property.GetName(), name);
counter++;
}
EXPECT_EQ(counter, 5);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment