}
@Test
public void testStylesheet() throws Exception
{
URLConnectionClientExecutor executor = new URLConnectionClientExecutor();
ClientRequest request = executor.createRequest(generateURL("/test/{name}"));
request.body("text/plain", "Hello ").pathParameter("name", "Bill");
String response = request.postTarget(String.class);
System.out.println(response);
Assert.assertEquals(response, "Hello Bill");
response = request.postTarget(String.class);