Assert.assertNotNull(messageBodyReader);
Assert.assertNotNull(messageBodyReader.getClass());
Assert.assertEquals(StuffProvider.class, messageBodyReader.getClass());
HttpClient client = new HttpClient();
PostMethod post = new PostMethod(generateURL("/stuff"));
post.setRequestEntity(new StringRequestEntity("bill", "Application/Stuff", null));
int status = client.executeMethod(post);
Assert.assertEquals(204, status);
}