diff --git a/src/test/java/de/tims/tictactoe/GameLogicTest.java b/src/test/java/de/tims/tictactoe/GameLogicTest.java index e2ec822..a9a184c 100644 --- a/src/test/java/de/tims/tictactoe/GameLogicTest.java +++ b/src/test/java/de/tims/tictactoe/GameLogicTest.java @@ -142,6 +142,10 @@ class GameLogicTest { {{'-', 'x', '-'}, {'-', 'x', '-'}, {'-', 'x', '-'}}), + Arguments.of("check win in column 2 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', '-', '-'},