assertFalse( constraintHelper.isMultiValueConstraint( Pattern.class ) );
}
@Test
public void testGetConstraintsFromMultiValueConstraint() throws Exception {
Engine engine = new Engine();
Field field = engine.getClass().getDeclaredField( "serialNumber" );
Annotation annotation = field.getAnnotation( Pattern.List.class );
assertNotNull( annotation );
List<Annotation> multiValueConstraintAnnotations = constraintHelper.getConstraintsFromMultiValueConstraint(
annotation