super(staxImpl);
}
protected void runTest() throws Throwable {
XMLInputFactory factory = staxImpl.newNormalizedXMLInputFactory();
XMLStreamReader reader = factory.createXMLStreamReader(new ByteArrayInputStream(
"<?xml version='1.0' encoding='iso-8859-15'?><root/>".getBytes("iso-8859-15")));
assertEquals("iso-8859-15", reader.getCharacterEncodingScheme());
reader.next();
try {
reader.getCharacterEncodingScheme();