summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2020-07-03 11:41:18 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2020-07-03 11:41:18 +0200
commit8dbf36540176b3709109d27b81db051e259de268 (patch)
tree3e66936b2cceac4995760931d6d9441014455ba6 /test
parent64f863949a4100d632124e19f54b8cc93fdc79fe (diff)
downloadgdx-boardgame-8dbf36540176b3709109d27b81db051e259de268.zip
gdx-boardgame-8dbf36540176b3709109d27b81db051e259de268.tar.gz
fix tests
Diffstat (limited to 'test')
-rw-r--r--test/src/ch/asynk/gdx/boardgame/test/Tests.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/src/ch/asynk/gdx/boardgame/test/Tests.java b/test/src/ch/asynk/gdx/boardgame/test/Tests.java
index f6e2198..034bf65 100644
--- a/test/src/ch/asynk/gdx/boardgame/test/Tests.java
+++ b/test/src/ch/asynk/gdx/boardgame/test/Tests.java
@@ -31,6 +31,7 @@ public class Tests
{
board = BoardFactory.getBoard(10, 9, BoardFactory.BoardType.HEX, 110, 50, 103, BoardFactory.BoardOrientation.VERTICAL, this::getTile);
tileStorage = new ArrayTileStorage(board.size());
+ check((board.size() == 86), "Vertical ", "size", board.size());
testTouch(899, 602, 5, 3, 812, 653, 32);
testTouch(906, 593, 5, 2, 907, 488, 23);
testTouch(916, 601, 6, 3, 1002, 653, 33);
@@ -40,6 +41,7 @@ public class Tests
{
board = BoardFactory.getBoard(9, 10, BoardFactory.BoardType.HEX, 110, 103, 50, BoardFactory.BoardOrientation.HORIZONTAL, this::getTile);
tileStorage = new ArrayTileStorage(board.size());
+ check((board.size() == 86), "Horizontal ", "size", board.size());
testTouch(705, 1103, 3, 7, 653, 1193, 34);
testTouch(707, 1092, 3, 6, 653, 1002, 33);
testTouch(715, 1096, 4, 7, 818, 1097, 43);
@@ -55,7 +57,7 @@ public class Tests
check((t.y == y), title, "y", t.y);
check(((int)t.cx == cx), title, "cx", (int)t.cx);
check(((int)t.cy == cy), title, "cy", (int)t.cy);
- check((g == k), title, "Key", g);
+ check((g == k), title, "Key", k);
}
private Tile getTile(int x, int y, boolean isOnMap)