MessageContext msgContext = new MessageContext();
HttpMethod httpMethod = new GetMethod();
msgContext.setProperty(HTTPConstants.HTTP_METHOD, httpMethod);
assertNotNull("HttpMethod can not be null",
msgContext.getProperty(HTTPConstants.HTTP_METHOD));
sender.cleanup(msgContext);
assertNull("HttpMethod should be null", msgContext.getProperty(HTTPConstants.HTTP_METHOD));
}
public void testInit() throws AxisFault {