doTestReturnValueViolations("true", "*");
}
public void doTestInputViolations(String suppress, String fieldPath, String propertyPath, String classPath, String parameterPath) throws Exception
{
ResteasyClient client = new ResteasyClientBuilder().build();
Builder builder = client.target("http://localhost:8080/RESTEASY-945-" + suppress + "/all/a/b/c").request();
Response response = builder.get();
System.out.println("status: " + response.getStatus());
Object header = response.getHeaders().getFirst(Validation.VALIDATION_HEADER);
Assert.assertTrue(header instanceof String);