Assert.assertEquals(0, pool.getNumDestroyed());
INonBlockingConnection con = pool.getNonBlockingConnection("localhost", server.getLocalPort());
HttpClientConnection httpCon = new HttpClientConnection(con);
IHttpResponse response = httpCon.call(new GetRequest("http://localhost:" + server.getLocalPort()+ "/"));
Assert.assertEquals(200, response.getStatus());
Assert.assertEquals("12", response.getBlockingBody().readString());
httpCon.close();