aboutsummaryrefslogtreecommitdiff
path: root/src/test/java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java')
-rw-r--r--src/test/java/fr/umlv/java/wallj/board/BoardParserTest.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/test/java/fr/umlv/java/wallj/board/BoardParserTest.java b/src/test/java/fr/umlv/java/wallj/board/BoardParserTest.java
index fdeebbe..de6799b 100644
--- a/src/test/java/fr/umlv/java/wallj/board/BoardParserTest.java
+++ b/src/test/java/fr/umlv/java/wallj/board/BoardParserTest.java
@@ -9,6 +9,9 @@ import java.net.URISyntaxException;
9import java.nio.file.Path; 9import java.nio.file.Path;
10import java.nio.file.Paths; 10import java.nio.file.Paths;
11 11
12/**
13 * @author Pacien TRAN-GIRARD
14 */
12final class BoardParserTest { 15final class BoardParserTest {
13 16
14 private Path getResourcePath(String str) throws URISyntaxException { 17 private Path getResourcePath(String str) throws URISyntaxException {
@@ -24,7 +27,7 @@ final class BoardParserTest {
24 27
25 @Test 28 @Test
26 void testParse() throws IOException, URISyntaxException { 29 void testParse() throws IOException, URISyntaxException {
27 BlockType W = BlockType.wALL, F = BlockType.FREE, G = BlockType.GARBAGE, T = BlockType.TRASH; 30 BlockType W = BlockType.WALL, F = BlockType.FREE, G = BlockType.GARBAGE, T = BlockType.TRASH;
28 BlockType[][] blocks = new BlockType[][]{ 31 BlockType[][] blocks = new BlockType[][]{
29 {W, W, W, W, W, W}, 32 {W, W, W, W, W, W},
30 {W, F, G, F, T, W}, 33 {W, F, G, F, T, W},