System.out.println(response.getEntity(String.class));
System.out.println("**** CustomerResource With UriInfo and Query params ***");
// TODO there is probably some better way how to construct that url..
response = c.resource("http://localhost:" + getJettyPort() + "/customers/uriinfo?start=2&size=2").get(ClientResponse.class);
Assert.assertEquals(200, response.getStatus());
System.out.println(response.getEntity(String.class));
}
}