exampleSProcService.testSprocCallWithValidationInvalidRet2(obj);
}
@Test
public void testValidationErrorWithNullParameters() {
final ExampleDomainObjectWithValidation obj = new ExampleDomainObjectWithValidation("test", 4);
try {
exampleValidationSProcService.testSprocCallWithMultipleParametersValidation(obj, null, null, null);
Assert.fail();
} catch (ConstraintViolationException e) {
Assert.assertNotNull(e.getConstraintViolations());