_testInvalidTrim(" <!-- - -- --> x\n <!-- - -- --> ",XML_PROLOG+"<hello></hello>");
}
public void testAmpHandling() throws Exception {
String input = "& &aa &";
BufferedReader reader = new BufferedReader(new XmlFixerReader(new StringReader(input)));
String output = reader.readLine();
reader.close();
assertEquals("& &aa &", output);
}