String replyToAddress = "replyTo";
EasyMock.expect(replyToURI.getValue()).andReturn(replyToAddress);
org.apache.cxf.ws.addressing.v200408.EndpointReferenceType acksToEPR =
control.createMock(org.apache.cxf.ws.addressing.v200408.EndpointReferenceType.class);
EasyMock.expect(ds.getAcksTo()).andReturn(acksToEPR);
AttributedURI acksToURI = control.createMock(AttributedURI.class);
EasyMock.expect(acksToEPR.getAddress()).andReturn(acksToURI);
String acksToAddress = "acksTo";
EasyMock.expect(acksToURI.getValue()).andReturn(acksToAddress);
EasyMock.expect(ds.canPiggybackAckOnPartialResponse()).andReturn(false);
EasyMock.expect(destination.getReliableEndpoint()).andReturn(rme).anyTimes();
RMManager manager = control.createMock(RMManager.class);
EasyMock.expect(rme.getManager()).andReturn(manager).anyTimes();
RMStore store = control.createMock(RMStore.class);