headers.put("Content-Type", "text/plain");
URI uri = new URI("http://localhost/");
InProcRequest request = new TestRequest("POST", uri, "POST body", headers);
InProcResponseWrapper response = new InProcResponseWrapper(httpAppTester.getResponses(request));
assertThat(response.getContent(), is("POST body"));
}