HttpClient httpClient = new HttpClient();
RequestHandlerChain chain = new RequestHandlerChain();
chain.addLast(new HeaderEnhancer());
chain.addLast(new AuditHandler());
httpClient.addInterceptor(chain);
IHttpResponse response = httpClient.call(new PostRequest("http://localhost:" + server.getLocalPort()+ "/", "text/plain", "fest123456"));
Assert.assertEquals(200, response.getStatus());