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.
22 lines
577 B
C++
22 lines
577 B
C++
#define PUGIXML_DEPRECATED // Suppress deprecated declarations to avoid warnings
|
|
|
|
#include "common.hpp"
|
|
|
|
TEST(document_deprecated_load)
|
|
{
|
|
xml_document doc;
|
|
CHECK(doc.load(STR("<node/>")));
|
|
CHECK_NODE(doc, STR("<node/>"));
|
|
}
|
|
|
|
TEST_XML(xpath_api_deprecated_select_single_node, "<node><head/><foo id='1'/><foo/><tail/></node>")
|
|
{
|
|
xpath_node n1 = doc.select_single_node(STR("node/foo"));
|
|
|
|
xpath_query q(STR("node/foo"));
|
|
xpath_node n2 = doc.select_single_node(q);
|
|
|
|
CHECK(n1.node().attribute(STR("id")).as_int() == 1);
|
|
CHECK(n2.node().attribute(STR("id")).as_int() == 1);
|
|
}
|