/** Test of passwordCorrect method, of class PassCrypt. */
 @Test
 public void testPasswordCorrect() throws Exception {
   System.out.println("passwordCorrect");
   PassCrypt instance = new PassCrypt("username", "password");
   boolean expResult = true;
   boolean result = instance.passwordCorrect();
   assertEquals(expResult, result);
   // TODO review the generated test code and remove the default call to fail.
 }