Implemented positioning of stones on hand
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@202 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
f5f53cb551
commit
8e73d1ab37
3 changed files with 52 additions and 6 deletions
|
@ -89,8 +89,8 @@ public class HandTest {
|
|||
hand.drop(stone1, new Position(13, 0));
|
||||
hand.drop(stone2, new Position(12.5f, 0));
|
||||
|
||||
assertEquals(new Position(12.5f, 0), hand.getPosition(stone1));
|
||||
assertEquals(new Position(0, 1), hand.getPosition(stone2));
|
||||
assertEquals(new Position(0, 1), hand.getPosition(stone1));
|
||||
assertEquals(new Position(12.5f, 0), hand.getPosition(stone2));
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
Reference in a new issue