assertTrue(response.isEntityAvailable());
response = client.handle(new Request(Method.GET, "http://localhost:"
+ this.port + "/abcd"));
assertTrue(response.getStatus().isClientError());
response = client.handle(new Request(Method.GET, "http://localhost:"
+ this.port2 + "/abcd"));
assertTrue(response.getStatus().isSuccess());
assertTrue(response.isEntityAvailable());
response = client.handle(new Request(Method.GET, "http://localhost:"
+ this.port2 + "/efgh"));