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.java17
1 files changed, 16 insertions, 1 deletions
diff --git a/test/jrummikub/control/RoundControlTest.java b/test/jrummikub/control/RoundControlTest.java
index f183505..6c8dffe 100644
--- a/test/jrummikub/control/RoundControlTest.java
+++ b/test/jrummikub/control/RoundControlTest.java
@@ -26,12 +26,18 @@ import jrummikub.view.MockView;
import org.junit.Before;
import org.junit.Test;
+/**
+ * Tests for {@link RoundControl}
+ */
public class RoundControlTest {
private MockView view;
private MockGameState testGameState;
private RoundControl testRound;
private MockTable newTable;
+ /**
+ * For each test create a round control initialized by a mock model and view
+ */
@Before
public void setup() {
view = new MockView();
@@ -86,7 +92,7 @@ public class RoundControlTest {
view.displayStartTurnPanel = false;
}
- // TODO hier weitermachen
+ /** */
@Test
public void testDealStone() {
testRound.deal();
@@ -97,12 +103,14 @@ public class RoundControlTest {
assertEquals(28, testGameState.getActivePlayer().getHand().getSize());
}
+ /** */
@Test
public void testDeal() {
testRound.deal();
checkCorrectlyDealed();
}
+ /** */
@Test
public void testStartRound() {
testRound.startRound();
@@ -111,6 +119,7 @@ public class RoundControlTest {
checkTurnStartSetUp();
}
+ /** */
@Test
public void testTableDisplay() {
testRound.startRound();
@@ -120,6 +129,7 @@ public class RoundControlTest {
view.getPlayerPanel().endTurnEvent.emit();
}
+ /** */
@Test
public void testTableValidHandChanged() {
testRound.startRound();
@@ -139,6 +149,7 @@ public class RoundControlTest {
checkTurnStartSetUp();
}
+ /** */
@Test
public void testTableInvalidHandChanged() {
testRound.startRound();
@@ -160,6 +171,7 @@ public class RoundControlTest {
checkTurnStartSetUp();
}
+ /** */
@Test
public void testTableValidHandUnchanged() {
testRound.startRound();
@@ -179,6 +191,7 @@ public class RoundControlTest {
checkTurnStartSetUp();
}
+ /** */
@Test
public void testTableInvalidHandUnchanged() {
testRound.startRound();
@@ -198,6 +211,7 @@ public class RoundControlTest {
checkTurnStartSetUp();
}
+ /** */
@Test
public void testWinning() {
testRound.startRound();
@@ -217,6 +231,7 @@ public class RoundControlTest {
assertTrue(view.displayWinPanel);
}
+ /** */
@Test
public void testTableDifference() {
MockTable oldTable = new MockTable();