Package com.bleujin.framework.valid.validator

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


  }
 
  public void testDir() throws Exception {
    b.setSvalue("aA_") ;
    assertEquals(true, new Dir(b, SVALIE).isValid()) ;

    b.setSvalue("aA_.ac") ;
    assertEquals(true, new Dir(b, SVALIE).isValid()) ;

    b.setSvalue("ac$") ;
    assertEquals(true, new Dir(b, SVALIE).isValid()) ;

    b.setSvalue("ac*") ;
    assertEquals(false, new Dir(b, SVALIE).isValid()) ;
  }
View Full Code Here

TOP

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

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.