diff options
author | Jannis Harder <harder@informatik.uni-luebeck.de> | 2011-05-24 21:57:18 +0200 |
---|---|---|
committer | Jannis Harder <harder@informatik.uni-luebeck.de> | 2011-05-24 21:57:18 +0200 |
commit | 8c3c66f361934e521ef7d00e9464cfc51875badc (patch) | |
tree | 4fc46e934555edd4f2a7011798dcc5a8f30abbfa /test/jrummikub/model | |
parent | d5a8b2204c7b717e0b1f24fed0892091835356ed (diff) | |
download | JRummikub-8c3c66f361934e521ef7d00e9464cfc51875badc.tar JRummikub-8c3c66f361934e521ef7d00e9464cfc51875badc.zip |
Implemented routine to check if initial melds are possible
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@266 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'test/jrummikub/model')
-rw-r--r-- | test/jrummikub/model/HandTest.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/jrummikub/model/HandTest.java b/test/jrummikub/model/HandTest.java index 5aa662c..5396bd8 100644 --- a/test/jrummikub/model/HandTest.java +++ b/test/jrummikub/model/HandTest.java @@ -133,6 +133,7 @@ public class HandTest { }
private void testInitialMeld(boolean possible, List<Stone> handStones) {
+ hand = new Hand(new GameSettings());
for (Stone stone : handStones) {
hand.drop(stone, new Position(0, 0));
}
@@ -141,7 +142,7 @@ public class HandTest { /** */
@Test
- public void testNoValid() {
+ public void testInvalid() {
testInitialMeld(false, Arrays.asList(new Stone(8, RED), new Stone(9,
RED), new Stone(10, RED), new Stone(12, RED),
new Stone(13, RED)));
|