diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-10-31 07:33:01 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-10-31 07:33:01 +0000 |
commit | 4920e4fec93b801410b85c894c292a8e982661ba (patch) | |
tree | 4b9d91d29875dc2ab8f09b214372a804f9c04acb /tests/test_document.cpp | |
parent | a73424aeffa5bbdf36c610dae96cd28dc81f4e66 (diff) |
Added xml_document::reset() function with document parameter
git-svn-id: http://pugixml.googlecode.com/svn/trunk@786 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/test_document.cpp')
-rw-r--r-- | tests/test_document.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/test_document.cpp b/tests/test_document.cpp index 342d07c..8796560 100644 --- a/tests/test_document.cpp +++ b/tests/test_document.cpp @@ -906,3 +906,22 @@ TEST(document_reset_empty) CHECK(!doc.first_child()); CHECK_NODE(doc, STR("")); } + +TEST_XML(document_reset_copy, "<node><child/></node>") +{ + xml_document doc2; + + CHECK_NODE(doc2, STR("")); + + doc2.reset(doc); + + CHECK_NODE(doc2, STR("<node><child /></node>")); + CHECK(doc.first_child() != doc2.first_child()); + + doc.reset(doc2); + + CHECK_NODE(doc, STR("<node><child /></node>")); + CHECK(doc.first_child() != doc2.first_child()); + + CHECK(doc.first_child().offset_debug() == -1); +} |