Package org.apache.axiom.testutils.io

Examples of org.apache.axiom.testutils.io.CloseSensorWriter


    protected void runTest() throws Throwable {
        OMFactory factory = metaFactory.getOMFactory();
        OMElement element = factory.createOMElement(new QName("a"));
        factory.createOMText(element, "test");
        StringWriter sw = new StringWriter();
        CloseSensorWriter out = new CloseSensorWriter(sw);
        element.writeTextTo(out, true);
        assertEquals(element.getText(), sw.toString());
        assertFalse(out.isClosed());
    }
View Full Code Here

TOP

Related Classes of org.apache.axiom.testutils.io.CloseSensorWriter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.