clientBinding.createResponseCallback();
EasyMock.expectLastCall().andReturn(responseCallback);
EasyMock.replay(clientBinding);
}
EndpointReferenceType decoupledEndpoint = client.getDecoupledEndpoint();
assertNotNull(decoupledEndpoint);
assertNotNull(decoupledEndpoint.getAddress());
assertEquals(decoupledEndpoint.getAddress().getValue(), DECOUPLED_ADDRESS);
assertTrue(((HTTPClientTransport)client).hasDecoupledEndpoint());
assertSame(responseCallback, client.getResponseCallback());
if (initial) {
EasyMock.verify(bus);