diff --git a/src/test/java/de/tims/tictactoe/GameLogicTest.java b/src/test/java/de/tims/tictactoe/GameLogicTest.java index 43b702a..11bffca 100644 --- a/src/test/java/de/tims/tictactoe/GameLogicTest.java +++ b/src/test/java/de/tims/tictactoe/GameLogicTest.java @@ -137,7 +137,11 @@ class GameLogicTest { Arguments.of("check win for player 1", true, new char[][] {{'x', '-', '-'}, {'x', '-', '-'}, - {'x', '-', '-'}}) + {'x', '-', '-'}}), + Arguments.of("check win for player 2", true, new char[][] + {{'o', '-', '-'}, + {'o', '-', '-'}, + {'o', '-', '-'}}) ); }