diff options
author | pacien | 2018-01-10 18:49:04 +0100 |
---|---|---|
committer | pacien | 2018-01-10 18:49:19 +0100 |
commit | 6ec0bbf3b3ca7e724430fd6037dfd6e2f1b9b983 (patch) | |
tree | 98d3997a997831cbac2bf9d22e03a00f56c81374 /src/test | |
parent | 4bf5d236f8e0a677643fd551dc605753d3646309 (diff) | |
download | wallj-6ec0bbf3b3ca7e724430fd6037dfd6e2f1b9b983.tar.gz |
Document more
Signed-off-by: pacien <pacien.trangirard@pacien.net>
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/java/fr/umlv/java/wallj/board/BoardParserTest.java | 5 |
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; | |||
9 | import java.nio.file.Path; | 9 | import java.nio.file.Path; |
10 | import java.nio.file.Paths; | 10 | import java.nio.file.Paths; |
11 | 11 | ||
12 | /** | ||
13 | * @author Pacien TRAN-GIRARD | ||
14 | */ | ||
12 | final class BoardParserTest { | 15 | final 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}, |