diff --git a/src/test/java/de/tims/tictactoe/GameLogicTest.java b/src/test/java/de/tims/tictactoe/GameLogicTest.java index 075945d..1210ed1 100644 --- a/src/test/java/de/tims/tictactoe/GameLogicTest.java +++ b/src/test/java/de/tims/tictactoe/GameLogicTest.java @@ -173,7 +173,11 @@ class GameLogicTest { Arguments.of("check win in column 0 for player 1 with full board", 'x', true, new char[][] {{'x', 'o', 'o'}, {'x', 'o', 'x'}, - {'x', 'x', 'o'}}) + {'x', 'x', 'o'}}), + Arguments.of("check win in column 1 for player 2 with full board", 'o', true, new char[][] + {{'x', 'o', 'o'}, + {'x', 'o', 'x'}, + {'o', 'o', 'x'}}) ); }