Skip to content
Snippets Groups Projects
Commit 76402563 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[T/MeL] Using unique_ptr to avoid memory leak.

parent aa208112
No related branches found
No related tags found
No related merge requests found
...@@ -23,13 +23,14 @@ TEST(MeshLib, UniqueMeshId) ...@@ -23,13 +23,14 @@ TEST(MeshLib, UniqueMeshId)
// //
// Test mesh counter increments. // Test mesh counter increments.
// //
Mesh* m1 = new Mesh("second", std::vector<Node*>(), std::vector<Element*>()); auto m1 = std::make_unique<Mesh>("second", std::vector<Node*>(),
std::vector<Element*>());
ASSERT_EQ(counter_value + std::size_t(1), m1->getID()); ASSERT_EQ(counter_value + std::size_t(1), m1->getID());
Mesh m2("third", std::vector<Node*>(), std::vector<Element*>()); Mesh m2("third", std::vector<Node*>(), std::vector<Element*>());
ASSERT_EQ(counter_value + std::size_t(2), m2.getID()); ASSERT_EQ(counter_value + std::size_t(2), m2.getID());
delete m1; m1.reset();
ASSERT_EQ(counter_value + std::size_t(2), m2.getID()); ASSERT_EQ(counter_value + std::size_t(2), m2.getID());
Mesh m3("fourth", std::vector<Node*>(), std::vector<Element*>()); Mesh m3("fourth", std::vector<Node*>(), std::vector<Element*>());
......
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