Compare commits

..

No commits in common. "558fecdac3b91234ee07791669116d3fce5be32e" and "d9d17d11a3c808e314006af8890ed607a827ad4f" have entirely different histories.

View File

@ -10,28 +10,10 @@ public class CredentialsTest{
public void testOne(){
Credentials c = new Credentials("", "");
assertNotNull(c);
}
@Test
public void testTwo(){
Credentials c = new Credentials("hofmannol", "GERONIMO");
assertTrue(c.valid());
}
@Test
public void testThree(){
Credentials c = new Credentials("hofmannolli", "GERONIMOil");
assertFalse(c.valid());
}
@Test
public void testFour(){
Credentials c = new Credentials("hofmannoll", "GERONIMOil");
assertFalse(c.valid());
}
}
}