use of org.w3c.dom.CDATASection in project webservices-axiom by apache.
the class TestCreateOMTextCDATASection method runTest.
@Override
protected void runTest() throws Throwable {
OMText text = metaFactory.getOMFactory().createOMText("cdata section content", OMNode.CDATA_SECTION_NODE);
assertTrue(text instanceof CDATASection);
}
Aggregations