use of org.apache.axiom.soap.SOAPBody in project webservices-axiom by apache.
the class TestHasFaultNoFault method runTest.
@Override
protected void runTest() throws Throwable {
SOAPBody body = soapFactory.getDefaultEnvelope().getBody();
body.addChild(soapFactory.createOMElement(qname.getLocalPart(), qname.getNamespaceURI(), qname.getPrefix()));
assertFalse(body.hasFault());
}
Aggregations