This test fails
public void testCDATA()
throws SAXException, IOException, ParserConfigurationException {
String expected = "<a>Hello</a>";
String actual = "<a><![CDATA[Hello]]></a>";
assertXMLEqual(expected, actual);
}