From a727ea0064b9244681ca6d2cf5613e1c706f58b4 Mon Sep 17 00:00:00 2001 From: Siamak Date: Thu, 8 Feb 2024 14:50:36 +0100 Subject: [PATCH] =?UTF-8?q?Testfunktion=20f=C3=BCr=20O=20gewinnt=20linksdi?= =?UTF-8?q?agonal=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 5cdfb4d..438ef28 100644 --- a/src/test/test_funktionen.c +++ b/src/test/test_funktionen.c @@ -380,6 +380,21 @@ void test_o_wins_onIndex_00_11_22(void) TEST_ASSERT_EQUAL_INT(expected, actual); } +void test_o_wins_onIndex_02_11_20(void) +{ + /* arrange */ + int actual; + int expected = 1; + + char board[][3] = {{' ',' ','O'}, {' ','O',' '}, {'O',' ',' '}}; + + /* act */ + actual = o_wins_02_11_20(board); + + /* assert */ + TEST_ASSERT_EQUAL_INT(expected, actual); +} + void test_stringLaenge_von_Kokosnuss(void) { /* arrange */