Examples of PassGenerator


Examples of org.jayasoft.woj.common.util.password.PassGenerator

    public PasswordTest() {
        super("PasswordTest");
    }
   
    public void testAlphaNumerical() {
        PassGenerator pg = AlphaNumericalPassGenerator.INSTANCE;
        String pass = pg.generate(10);
        assertEquals(10, pass.length());
        assertFalse(pg.generate(30).equals(pg.generate(30)));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.