use of org.apache.cxf.phase.Phase in project cxf by apache.
the class InterceptorFaultTest method testInterceptorFail.
private void testInterceptorFail(List<Phase> phases, FaultLocation location, boolean robust) throws PingMeFault {
for (Phase p : phases) {
location.setPhase(p.getName());
if (Phase.POST_INVOKE.equals(p.getName())) {
break;
}
testFail(location, true, robust);
}
}
Aggregations