summaryrefslogtreecommitdiffstats
path: root/tests/test_XMLDocument.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_XMLDocument.cpp')
-rw-r--r--tests/test_XMLDocument.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test_XMLDocument.cpp b/tests/test_XMLDocument.cpp
index 18e880d..95429cb 100644
--- a/tests/test_XMLDocument.cpp
+++ b/tests/test_XMLDocument.cpp
@@ -45,6 +45,9 @@ BOOST_AUTO_TEST_CASE( testXMLDocument_Constructor1 )
BOOST_CHECK(root.getName() == "test");
BOOST_CHECK(root.getContent().empty());
+
+ delete doc;
+
}
BOOST_AUTO_TEST_CASE( testXMLDocument_FileIO )
@@ -61,6 +64,9 @@ BOOST_AUTO_TEST_CASE( testXMLDocument_FileIO )
BOOST_CHECK(root.getName() == "test");
BOOST_CHECK(root.getContent().empty());
+ delete doc2;
+ delete doc;
+
}
BOOST_AUTO_TEST_CASE( testXMLDocument_CreateNodes )
@@ -109,6 +115,8 @@ BOOST_AUTO_TEST_CASE( testXMLDocument_Options )
BOOST_CHECK(root.getOption("opt") == "val");
+ delete doc;
+
}
BOOST_AUTO_TEST_CASE( testXMLDocument_List )