From 686323ae219b522d46b07f73d6bf4c667b0d17e1 Mon Sep 17 00:00:00 2001 From: Habib Date: Tue, 6 Feb 2024 17:18:24 +0100 Subject: [PATCH] =?UTF-8?q?x=5Fwins=5F00=5F01=5F02()=20definiert=20und=20e?= =?UTF-8?q?inen=20Test=20f=C3=BCr=20die=20Funktion=20erstellt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/c/funktionen.c | 6 ++++++ src/test/test_funktionen.c | 15 +++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/src/c/funktionen.c b/src/c/funktionen.c index 4a4a52a..d117303 100644 --- a/src/c/funktionen.c +++ b/src/c/funktionen.c @@ -61,6 +61,12 @@ int x_wins_02_12_22(char board[][3]) { } } +int x_wins_00_01_02(char board[][3]) { + if (board[0][0] == 'X' && board[0][1] == 'X' && board[0][2] == 'X') { + return 1; + } +} + int string_character_counter(char string[]) { int stringLength = 0; diff --git a/src/test/test_funktionen.c b/src/test/test_funktionen.c index 8d730ed..131453b 100644 --- a/src/test/test_funktionen.c +++ b/src/test/test_funktionen.c @@ -121,6 +121,21 @@ void test_x_wins_onIndex_02_12_22(void) TEST_ASSERT_EQUAL_INT(expected, actual); } +void test_x_wins_onIndex_00_01_02(void) +{ + /* arrange */ + int actual; + int expected = 1; + + char board[][3] = {{'X','X','X'}, {' ',' ',' '}, {' ',' ',' '}}; + + /* act */ + actual = x_wins_00_01_02(board); + + /* assert */ + TEST_ASSERT_EQUAL_INT(expected, actual); +} + void test_stringLaenge_von_Kokosnuss(void) { /* arrange */