use of org.apache.axiom.soap.SOAPMessage in project webservices-axiom by apache.
the class TestCommentInProlog method runTest.
@Override
protected void runTest() throws Throwable {
SOAPMessage message = SOAPSampleSet.COMMENT_IN_PROLOG.getMessage(spec).getAdapter(SOAPSampleAdapter.class).getSOAPMessage(metaFactory);
OMNode firstChild = message.getFirstOMChild();
assertTrue(firstChild instanceof OMComment);
}
Aggregations