summaryrefslogtreecommitdiffstats
path: root/test/jrummikub/control/ApplicationControlTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/jrummikub/control/ApplicationControlTest.java')
-rw-r--r--test/jrummikub/control/ApplicationControlTest.java12
1 files changed, 7 insertions, 5 deletions
diff --git a/test/jrummikub/control/ApplicationControlTest.java b/test/jrummikub/control/ApplicationControlTest.java
index 88f365a..b239e64 100644
--- a/test/jrummikub/control/ApplicationControlTest.java
+++ b/test/jrummikub/control/ApplicationControlTest.java
@@ -1,10 +1,9 @@
package jrummikub.control;
-import static org.junit.Assert.assertFalse;
-import static org.junit.Assert.assertSame;
-import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.*;
import jrummikub.util.LoginData;
import jrummikub.view.IQuitWarningPanel.QuitMode;
+import jrummikub.view.IView.BottomPanelType;
import jrummikub.view.MockView;
import org.junit.Before;
@@ -41,8 +40,11 @@ public class ApplicationControlTest {
testAppControl = new ApplicationControl(view);
testAppControl.startApplication();
view.settingsPanel.startGameEvent.emit();
- view.getPlayerPanel().pauseEvent.emit();
- // assertTrue(view.isPaused);
+ assertSame(BottomPanelType.START_TURN_PANEL, view.bottomPanelType);
+ view.startTurnEvent.emit();
+ assertSame(BottomPanelType.HUMAN_HAND_PANEL, view.bottomPanelType);
+ view.pauseEvent.emit();
+ assertTrue(view.pauseModeEnabled);
}
/** */