diff options
Diffstat (limited to 'test/jrummikub/control')
-rw-r--r-- | test/jrummikub/control/RoundControlTest.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/jrummikub/control/RoundControlTest.java b/test/jrummikub/control/RoundControlTest.java index 6c8dffe..3e610e3 100644 --- a/test/jrummikub/control/RoundControlTest.java +++ b/test/jrummikub/control/RoundControlTest.java @@ -91,6 +91,17 @@ public class RoundControlTest { view.getTablePanel().rightPlayerName = null; view.displayStartTurnPanel = false; } + + /** */ + @Test + public void playerCameOutCorrectly(){ + MockTable oldTable = new MockTable(); + MockTable newTable = new MockTable(); + Stone blueTen = new Stone(10, BLUE); + Stone redTen = new Stone(10, RED); + Stone blackTen = new Stone(10, BLACK); + + } /** */ @Test |