// when
assertEquals(expectations, proxyClient
.retrieveAsJSON(
new HttpRequest()
.withPath("/some_path")
.withBody(new StringBody("some_request_body", Body.Type.STRING))
));
// then
verify(mockApacheHttpClient).sendPUTRequest("http://localhost:8080", "/retrieve", "" +
"{" + System.getProperty("line.separator") +