+
+void XmlTestCase::CopyNode()
+{
+ const char *xmlText =
+"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
+"<root>\n"
+" <first><sub1/><sub2/><sub3/></first>\n"
+" <second/>\n"
+"</root>\n"
+ ;
+ wxXmlDocument doc;
+ wxStringInputStream sis(xmlText);
+ CPPUNIT_ASSERT( doc.Load(sis) );
+
+ wxXmlNode* const root = doc.GetRoot();
+ CPPUNIT_ASSERT( root );
+
+ wxXmlNode* const first = root->GetChildren();
+ CPPUNIT_ASSERT( first );
+
+ wxXmlNode* const second = first->GetNext();
+ CPPUNIT_ASSERT( second );
+
+ *first = *second;
+
+ wxStringOutputStream sos;
+ CPPUNIT_ASSERT( doc.Save(sos) );
+
+ const char *xmlTextResult =
+"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
+"<root>\n"
+" <second/>\n"
+" <second/>\n"
+"</root>\n"
+ ;
+ CPPUNIT_ASSERT_EQUAL( xmlTextResult, sos.GetString() );
+}