verify(event, XMLStreamConstants.COMMENT, "<!--foo-->");
}
@Test
public void testCreateProcessingInstruction() throws XMLStreamException {
ProcessingInstruction event = factory.createProcessingInstruction("foo", "bar");
verify(event, XMLStreamConstants.PROCESSING_INSTRUCTION, "<?foo bar?>");
}