diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2011-05-06 01:35:09 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2011-05-06 01:35:09 +0200 |
commit | 193e9247fac9d10e3c32cc7cacb65406ef9d19c8 (patch) | |
tree | bc3356b1fa99f1445f554ee2878753223fbd9d79 /test | |
parent | 55b19cef1d4594c0e4fe185b446eb59ad5f6bc85 (diff) | |
download | JRummikub-193e9247fac9d10e3c32cc7cacb65406ef9d19c8.tar JRummikub-193e9247fac9d10e3c32cc7cacb65406ef9d19c8.zip |
Add winning notification and fix test...
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@161 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'test')
-rw-r--r-- | test/jrummikub/control/RoundControlTest.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/jrummikub/control/RoundControlTest.java b/test/jrummikub/control/RoundControlTest.java index 116786e..159df9d 100644 --- a/test/jrummikub/control/RoundControlTest.java +++ b/test/jrummikub/control/RoundControlTest.java @@ -61,6 +61,7 @@ public class RoundControlTest { assertNotNull(view.getTablePanel().rightPlayerName); assertTrue(view.displayStartTurnPanel); assertFalse(view.startTurnEvent.listeners.isEmpty()); + assertFalse(view.displayWinPanel); checkTableDisplay(); } @@ -194,6 +195,8 @@ public class RoundControlTest { view.startTurnEvent.emit(); assertFalse(view.displayStartTurnPanel); + Stone stone = testGameState.players.get(0).hand.stones.remove(0); + newTable.drop(new StoneSet(stone), new Position(0, 0)); testGameState.players.get(0).hand.stones.clear(); resetTurnStart(); view.getPlayerPanel().endTurnEvent.emit(); |