summaryrefslogtreecommitdiffstats
path: root/test/jrummikub/model
diff options
context:
space:
mode:
authorBennet Gerlach <bennet_gerlach@web.de>2011-05-09 21:56:29 +0200
committerBennet Gerlach <bennet_gerlach@web.de>2011-05-09 21:56:29 +0200
commit5767486e8317c22eee028606c49f2a4a8909de3c (patch)
tree2301c1555ff7b9978d2259b267e88a3b77f3842a /test/jrummikub/model
parentc5374de06f0cf8a2bcf2bd43c4aabaa33cd36d01 (diff)
downloadJRummikub-5767486e8317c22eee028606c49f2a4a8909de3c.tar
JRummikub-5767486e8317c22eee028606c49f2a4a8909de3c.zip
Test simple dropping on Hand
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@198 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'test/jrummikub/model')
-rw-r--r--test/jrummikub/model/HandTest.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/jrummikub/model/HandTest.java b/test/jrummikub/model/HandTest.java
new file mode 100644
index 0000000..25a9c18
--- /dev/null
+++ b/test/jrummikub/model/HandTest.java
@@ -0,0 +1,31 @@
+package jrummikub.model;
+
+import org.junit.Before;
+import org.junit.Test;
+import static jrummikub.model.StoneColor.*;
+import static org.junit.Assert.*;
+
+public class HandTest {
+
+ Hand hand;
+
+ @Before
+ public void setUp() {
+ hand = new Hand();
+ }
+
+ @Test
+ public void testSimpleDrop() {
+ Stone stone1 = new Stone(1, RED);
+ Stone stone2 = new Stone(5, RED);
+ Stone stone3 = new Stone(2, RED);
+
+ hand.drop(stone1, new Position(2, 0));
+ hand.drop(stone2, new Position(3, 0));
+ hand.drop(stone3, new Position(2.5f, 0));
+
+ assertEquals(new Position(1.5f, 0), hand.getPosition(stone1));
+ assertEquals(new Position(3.5f, 0), hand.getPosition(stone2));
+ assertEquals(new Position(2.5f, 0), hand.getPosition(stone3));
+ }
+}