diff options
author | Ida Massow <massow@informatik.uni-luebeck.de> | 2011-05-16 20:54:37 +0200 |
---|---|---|
committer | Ida Massow <massow@informatik.uni-luebeck.de> | 2011-05-16 20:54:37 +0200 |
commit | f7aace72346b32af6b6aeb7e650d762ec263ff2f (patch) | |
tree | 98fcfd14138e40c436c518bca148d2a4f1e34aa8 /test/jrummikub/control | |
parent | 9ad7f0822eb66972f740fb3da58c85d7a555d549 (diff) | |
download | JRummikub-f7aace72346b32af6b6aeb7e650d762ec263ff2f.tar JRummikub-f7aace72346b32af6b6aeb7e650d762ec263ff2f.zip |
Tests und imlementierung für Wert von Sets bestimmen, fertig und getestet
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@242 72836036-5685-4462-b002-a69064685172
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 |