public void testSaltCrypt() {
// passwd is a fake class for testing located in testcases dir
UnixCrypt unixcrypt = null;
// look me up out out of that file and make sure uid is still 28272
String crypt = unixcrypt.crypt(SALT, PASSWORD);
assertEquals(crypt, CRYPT_PASSWORD);
}
public void testMatches(){