Package org.strecks.validator.impl

Examples of org.strecks.validator.impl.BeanWithNoConverter


{

  @Test
  public void testBeanWithNoConverter()
  {
    BeanWithNoConverter form = new BeanWithNoConverter();
    DelegatingForm delegatingForm = FormTestUtils.getDelegatingForm(form);
    form.setDateField("duff value");

    try
    {
      delegatingForm.validate(null, null);
      Assert.fail();
View Full Code Here

TOP

Related Classes of org.strecks.validator.impl.BeanWithNoConverter

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.