diff options
Diffstat (limited to 'test/jrummikub/control/TurnControlTest.java')
-rw-r--r-- | test/jrummikub/control/TurnControlTest.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/jrummikub/control/TurnControlTest.java b/test/jrummikub/control/TurnControlTest.java index 0335bc7..f195fbc 100644 --- a/test/jrummikub/control/TurnControlTest.java +++ b/test/jrummikub/control/TurnControlTest.java @@ -271,6 +271,9 @@ public class TurnControlTest { mockView.playerPanel.handPanel.stoneClickEvent.emit(firstStone, true); mockView.playerPanel.handPanel.stoneClickEvent.emit(secondStone, true); + mockView.tablePanel.stoneCollectionPanel.stoneClickEvent.emit(firstStone, + true); + mockView.tablePanel.stoneCollectionPanel.setClickEvent.emit(firstStone, true); @@ -333,8 +336,10 @@ public class TurnControlTest { mockTable.findStoneSet.put(stone1, set1); mockTable.findStoneSet.put(stone4, set2); + mockView.tablePanel.stoneClickEvent.emit(stone1, false); mockView.tablePanel.setClickEvent.emit(stone1, false); assertCollection(Arrays.asList(stone1, stone2)); + mockView.tablePanel.stoneClickEvent.emit(stone4, false); mockView.tablePanel.setClickEvent.emit(stone4, false); assertCollection(Arrays.asList(stone3, stone4)); } @@ -353,8 +358,10 @@ public class TurnControlTest { mockTable.findStoneSet.put(stone1, set1); mockTable.findStoneSet.put(stone4, set2); + mockView.tablePanel.stoneClickEvent.emit(stone1, true); mockView.tablePanel.setClickEvent.emit(stone1, true); assertCollection(Arrays.asList(stone1, stone2)); + mockView.tablePanel.stoneClickEvent.emit(stone4, true); mockView.tablePanel.setClickEvent.emit(stone4, true); assertCollection(Arrays.asList(stone1, stone2, stone3, stone4)); } |