sign_in_user method another minor decoding fix and tests successful

sign_in_up_out
Daniel Zdravkovic 2024-06-11 11:05:48 +02:00
parent 5141d8ec03
commit 6252c3d686
1 changed files with 8 additions and 0 deletions

View File

@ -113,4 +113,12 @@ public class SystemTest {
assertEquals(true, current_system.get_all_user().get(1).getPassword().equals("MTIzRXNlbA=="));
}
@Test
public void sign_in_user() {
assertEquals(true, current_system.sign_in_user("Daniel", "1401Daniel"));
assertEquals("Daniel",current_system.getDetails()[0]);
}
}