summaryrefslogtreecommitdiffstats
path: root/test/jrummikub/control/RoundControlTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/jrummikub/control/RoundControlTest.java')
-rw-r--r--test/jrummikub/control/RoundControlTest.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/jrummikub/control/RoundControlTest.java b/test/jrummikub/control/RoundControlTest.java
new file mode 100644
index 0000000..2e6a7d0
--- /dev/null
+++ b/test/jrummikub/control/RoundControlTest.java
@@ -0,0 +1,24 @@
+package jrummikub.control;
+
+import static org.junit.Assert.*;
+import jrummikub.model.GameState;
+import jrummikub.view.MockView;
+
+import org.junit.Test;
+
+public class RoundControlTest {
+
+ @Test
+ public void testDeal() {
+ MockView view = new MockView();
+ GameState testGameState = new GameState();
+ RoundControl testRound = new RoundControl(testGameState, view);
+ testRound.deal();
+ assertEquals(106 - testGameState.getPlayerCount() * 14, testGameState
+ .getGameHeap().getSize());
+ for (int i = 0; i < testGameState.getPlayerCount(); i++) {
+ assertEquals(14, testGameState.getPlayer(i).getHand().getSize());
+ }
+ }
+
+}