CPPUNIT_TEST( InsertChild );
CPPUNIT_TEST( InsertChildAfter );
CPPUNIT_TEST( LoadSave );
+ CPPUNIT_TEST( CDATA );
CPPUNIT_TEST_SUITE_END();
void InsertChild();
void InsertChildAfter();
void LoadSave();
+ void CDATA();
DECLARE_NO_COPY_CLASS(XmlTestCase)
};
wxString(sos8.GetString().ToUTF8()) );
}
+void XmlTestCase::CDATA()
+{
+ const char *xmlText =
+ "<?xml version=\"1.0\" encoding=\"windows-1252\"?>\n"
+ "<name>\n"
+ " <![CDATA[Giovanni Mittone]]>\n"
+ "</name>\n"
+ ;
+
+ wxStringInputStream sis(xmlText);
+ wxXmlDocument doc;
+ CPPUNIT_ASSERT( doc.Load(sis) );
+
+ wxXmlNode *n = doc.GetRoot();
+ CPPUNIT_ASSERT( n );
+
+ n = n->GetChildren();
+ CPPUNIT_ASSERT( n );
+
+ // currently leading white space is stripped by trailing is preserved (see
+ // #10552)
+ CPPUNIT_ASSERT_EQUAL( "Giovanni Mittone\n", n->GetContent() );
+}