diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2014-10-20 01:00:56 +0000 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2014-10-20 01:00:56 +0000 |
commit | 45b6315d995d70bc117b2ee7320112e54050463c (patch) | |
tree | 1c66ab4006f201666164437b7ef43baf2e71354a | |
parent | 1b8b87904b0618f853345619e7ee2656cab80113 (diff) |
tests: Add a coverage test for unspecified_bool
It's unfortunate that we can even do that...
git-svn-id: https://pugixml.googlecode.com/svn/trunk@1068 99668b35-9821-0410-8761-19e4c4f06640
-rw-r--r-- | tests/test_dom_traverse.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/test_dom_traverse.cpp b/tests/test_dom_traverse.cpp index c2437ab..e42846f 100644 --- a/tests/test_dom_traverse.cpp +++ b/tests/test_dom_traverse.cpp @@ -1043,3 +1043,19 @@ TEST_XML(dom_node_children_attributes, "<node1 attr1='value1' attr2='value2' />< CHECK(r4.begin() == xml_attribute_iterator()); CHECK(r4.end() == xml_attribute_iterator()); } + +TEST_XML(dom_unspecified_bool_coverage, "<node attr='value'>text</node>") +{ + xml_node node = doc.first_child(); + + node(0); + node.first_attribute()(0); + node.text()(0); + +#ifndef PUGIXML_NO_XPATH + xpath_query q(STR("/node")); + + q(0); + q.evaluate_node(doc)(0); +#endif +} |