From fd16de5ac34179e5765d4681c5098cb0d9af8bf6 Mon Sep 17 00:00:00 2001 From: Siamak Date: Thu, 8 Feb 2024 14:25:05 +0100 Subject: [PATCH] =?UTF-8?q?Testfunktion=20f=C3=BCr=20O=20gewinnt=20waagere?= =?UTF-8?q?cht=20Mitte=20erstellt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/test/test_funktionen.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/test/test_funktionen.c b/src/test/test_funktionen.c index e218424..3031ebb 100644 --- a/src/test/test_funktionen.c +++ b/src/test/test_funktionen.c @@ -335,6 +335,21 @@ void test_o_wins_onIndex_00_01_02(void) TEST_ASSERT_EQUAL_INT(expected, actual); } +void test_o_wins_onIndex_10_11_12(void) +{ + /* arrange */ + int actual; + int expected = 1; + + char board[][3] = {{' ',' ',' '}, {'O','O','O'}, {' ',' ',' '}}; + + /* act */ + actual = o_wins_10_11_12(board); + + /* assert */ + TEST_ASSERT_EQUAL_INT(expected, actual); +} + void test_stringLaenge_von_Kokosnuss(void) { /* arrange */