// some handlers decrement the value, so we can confirm SOAP body manipulation does not corrupt the headers
int numOfHandlerHitsInFlow = 3;
int intParam1 = 10;
int intParam2 = 10;
int total = proxy.headersHandler(intParam1, intParam2);
assertEquals("Return value should be " + (intParam1 + intParam2 - numOfHandlerHitsInFlow) + " but was " + total ,
(intParam1 + intParam2 - numOfHandlerHitsInFlow),
total);
TestLogger.logger.debug("Total (after handler manipulation) = " + total);