@Test
 public void testExecutableValidationDisabled() throws Exception {
   try {
     repeater.reverse(null);
   } catch (ConstraintViolationException e) {
     fail("CDI method interception should be disabled");
   }
 }