sign_out_method tests successful

sign_in_up_out
Daniel Zdravkovic 2024-06-11 11:09:29 +02:00
parent 6252c3d686
commit 8bf5c4a0b8
1 changed files with 9 additions and 0 deletions

View File

@ -121,4 +121,13 @@ public class SystemTest {
}
@Test
public void sign_out_user() {
current_system.sign_in_user("Daniel", "1401Daniel");
current_system.sign_out_user();
assertEquals("",current_system.getDetails()[0]);
}
}