Package org.strecks.validator.internal.impl

Examples of org.strecks.validator.internal.impl.BeanWithNoValidators


  @Test
  public void testBeanWithNoAnnotations() throws Exception
  {
    ValidationAnnotationReader reader = new ValidationAnnotationReader();
    ValidationInfo info = reader.readValidationHandlers(new BeanWithNoValidators(), null);

    Map<OrderedProperty, MethodValidators> map = info.getValidators();
    assert map != null;
    assert map.size() == 0;
  }
View Full Code Here

TOP

Related Classes of org.strecks.validator.internal.impl.BeanWithNoValidators

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.