summaryrefslogtreecommitdiff
path: root/tests/test_document.cpp
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2017-06-22 09:13:10 -0700
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2017-06-22 09:13:10 -0700
commit2252927c04cc61c95a58cf4c3c47a0aac4b05b61 (patch)
tree2c7fe93906b158ce0a4ada9768357f97ad1c334a /tests/test_document.cpp
parent94ef7b3a033825c4bc3d3578b55f2349182745f0 (diff)
Deprecate xml_document::load(const char*) and xml_node::select_single_node
These functions were deprecated via comments in 1.5 but never got the deprecated attribute; now is the time! Using deprecated functions produces a warning; to silence it, this change moves the relevant tests to a separate translation unit that has deprecation disabled.
Diffstat (limited to 'tests/test_document.cpp')
-rw-r--r--tests/test_document.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/test_document.cpp b/tests/test_document.cpp
index b702a07..fd376bb 100644
--- a/tests/test_document.cpp
+++ b/tests/test_document.cpp
@@ -1479,10 +1479,3 @@ TEST(document_convert_out_of_memory)
delete[] files[j].data;
}
}
-
-TEST(document_deprecated_load)
-{
- xml_document doc;
- CHECK(doc.load(STR("<node/>")));
- CHECK_NODE(doc, STR("<node/>"));
-}