summaryrefslogtreecommitdiffstats
path: root/test/jrummikub/model/RoundStateTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/jrummikub/model/RoundStateTest.java')
-rw-r--r--test/jrummikub/model/RoundStateTest.java35
1 files changed, 35 insertions, 0 deletions
diff --git a/test/jrummikub/model/RoundStateTest.java b/test/jrummikub/model/RoundStateTest.java
new file mode 100644
index 0000000..80b752e
--- /dev/null
+++ b/test/jrummikub/model/RoundStateTest.java
@@ -0,0 +1,35 @@
+package jrummikub.model;
+
+import static org.junit.Assert.*;
+
+import java.awt.Color;
+
+import org.junit.Before;
+import org.junit.Test;
+/**
+ * Test class for {@link RoundState}
+ */
+public class RoundStateTest {
+ private IRoundState testGame;
+
+ /** */
+ @Before
+ public void createGame() {
+ testGame = new RoundState();
+ }
+
+ /** */
+ @Test
+ public void nextActiveTest() {
+ // All there?
+ assertEquals(4, testGame.getPlayerCount());
+ assertSame(Color.red, testGame.getActivePlayer().getColor());
+ testGame.nextPlayer();
+ assertSame(Color.yellow, testGame.getActivePlayer().getColor());
+ testGame.nextPlayer();
+ testGame.nextPlayer();
+ testGame.nextPlayer();
+ assertSame(Color.red, testGame.getActivePlayer().getColor());
+ }
+
+}