* {@link AcceptHeaderHandler} should not set anything. However, the
* underlying client may set the header as a failsafe.
*/
public void testAcceptHeaderNoEntity() {
RestClient client = new RestClient();
ClientResponse resp = client.resource(getBaseURI() + "/echoaccept").get();
/*
* in this case the underlying client set the WILDCARD header for
* default HttpURLConnection based client.
*/
assertEquals("echo: " + MediaType.WILDCARD, resp.getEntity(String.class));