public void testRequestBlocking() throws SOAPException, IOException {
// Set up a parser for the response
SOAP11Request<Response> request = getRequestFactory().buildRequest(DUMMY_URL, getDummyEnvelope(), SOAP_ACTION,
Response.class);
SOAPEnvelope envelope = getDummyEnvelope();
expect(mockRequester.doSoapRequest(envelope, DUMMY_URL, SOAP_ACTION)).andReturn(
new com.alexgilleran.icesoap.request.impl.Response(SampleResponse.getSingleResponse(), 200));
replay(mockRequester);
// Verify the parsed object was correct.