use of org.apache.axis2.transport.testkit.MessageExchangeValidator in project wso2-axis2-transports by wso2.
the class MessageTestCase method runTest.
@Override
protected void runTest() throws Throwable {
for (MessageExchangeValidator validator : validators) {
validator.beforeSend();
}
doRunTest();
for (MessageExchangeValidator validator : validators) {
log.debug("Invoking message exchange validator " + validator.getClass().getName());
validator.afterReceive();
}
}
Aggregations