diff --git a/src/test/java/de/tims/tictactoe/GameLogicTest.java b/src/test/java/de/tims/tictactoe/GameLogicTest.java index 718caaf..83891b1 100644 --- a/src/test/java/de/tims/tictactoe/GameLogicTest.java +++ b/src/test/java/de/tims/tictactoe/GameLogicTest.java @@ -134,18 +134,18 @@ class GameLogicTest { private static Stream testCasesForCheckForWin() { return Stream.of( - Arguments.of("check win for player 1", 'x', true, new char[][] - {{'x', '-', '-'}, - {'x', '-', '-'}, - {'x', '-', '-'}}), - Arguments.of("check win for player 2", 'o', true, new char[][] - {{'o', '-', '-'}, - {'o', '-', '-'}, - {'o', '-', '-'}}), - Arguments.of("check win for player 2", 'o', false, new char[][] - {{'o', '-', '-'}, - {'o', '-', '-'}, - {'-', '-', '-'}}) + Arguments.of("check win in column 0 for player 1", 'x', true, new char[][] + {{'x', '-', '-'}, + {'x', '-', '-'}, + {'x', '-', '-'}}), + Arguments.of("check win in column 0 for player 2", 'o', true, new char[][] + {{'o', '-', '-'}, + {'o', '-', '-'}, + {'o', '-', '-'}}), + Arguments.of("check win in column 0 for player 2", 'o', false, new char[][] + {{'o', '-', '-'}, + {'o', '-', '-'}, + {'-', '-', '-'}}) ); }