Package com.bleujin.framework.valid.validator

Examples of com.bleujin.framework.valid.validator.Equal


    assertEquals(false, new LessEqualInteger(b, SVALUE, 2).isValid()) ;

  }
 
  public void testEqual() throws Exception {
    assertEquals(false, new Equal(b, IVALUE, SVALUE).isValid()) ;

    b.setIvalue(3) ;
    b.setSvalue("3") ;
   
    assertEquals(false, new Equal(b, IVALUE, SVALUE).isValid()) ;
  }
View Full Code Here

TOP

Related Classes of com.bleujin.framework.valid.validator.Equal

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.