// @Ignore
public void testPropertyInvalid() throws Exception
{
before(TestResourceWithProperty.class);
ClientRequest request = new ClientRequest(generateURL("/abcdef/unused"));
ClientResponse<?> response = request.post(String.class);
Assert.assertEquals(400, response.getStatus());
Object entity = response.getEntity();
ViolationReport r = new ViolationReport(String.class.cast(entity));
countViolations(r, 0, 1, 0, 0, 0);
ResteasyConstraintViolation cv = r.getPropertyViolations().iterator().next();