added the nextmethods

This commit is contained in:
Benjamin Feyer
2024-12-01 12:13:29 +01:00
parent 8b1868e03b
commit 8d49528a92

View File

@@ -2832,7 +2832,8 @@ public void testPodiumToStatistics() {
ceremony.setState(podium);
assertEquals(ceremony.getState(), podium);
//TODO
//simulate button-push
clientGameLogic.selectNext();
//tests if the client is in statistics
assertEquals(clientGameLogic.getState(), ceremony);
@@ -2852,7 +2853,8 @@ public void testStatisticsToCeremonyEndState() {
ceremony.setState(statistics);
assertEquals(ceremony.getState(), statistics);
//TODO simulate button-push
//simulate button-push
clientGameLogic.selectNext();
//tests if client is in startDialog
assertEquals(clientGameLogic.getState(), dialogs);