From e15ea6d5dcc5559cc064360595e30535308f0461 Mon Sep 17 00:00:00 2001
From: Sabina Grisi <sabina.grisi-chavarria@informatik.hs-fulda.de>
Date: Fri, 9 Feb 2024 23:13:15 +0100
Subject: [PATCH] Unittest CheckForWin_Vertical_2_5_8

---
 test/test_tictactoe.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/test/test_tictactoe.c b/test/test_tictactoe.c
index 3983cc9..971501a 100644
--- a/test/test_tictactoe.c
+++ b/test/test_tictactoe.c
@@ -38,4 +38,9 @@ void test_CheckForWin_Vertical_1_4_7(void) {
     TEST_ASSERT(checkForWin(10, 2, 3, 10, 5, 6, 10, 8, 9, 10) == 1);
 }
 
+void test_CheckForWin_Vertical_2_5_8(void) {
+    // Teste vertikalen Sieg in der zweiten Spalte
+    TEST_ASSERT(checkForWin(1, 11, 3, 4, 11, 6, 7, 11, 9, 11) == 1);
+}
+
 #endif // TEST
\ No newline at end of file