* Unit test to make sure that lookupUid works correctly
* give a fake password file
*/
public void testUseridLenPass() {
UserInfo userinfo = null;
try {
userinfo = new UserInfo(PASSWD_STREAM, SHADOW_STREAM);
} catch (Exception e) {
fail();
}
boolean valid=false;
// look me up out out of that file and make sure uid is still 28272
valid = userinfo.checkUserid(USER_ID_LEN_PASS);
assertTrue(valid == true);
// look me up out out of that file and make sure uid is still 28272
//valid = userinfo.checkUserIdLen(USER_ID_LEN_FAIL);
//assertTrue(valid = false);