Browse Source

x_wins_00_01_02() definiert und einen Test für die Funktion erstellt

remotes/origin/habib
Habib 11 months ago
parent
commit
686323ae21
  1. 6
      src/c/funktionen.c
  2. 15
      src/test/test_funktionen.c

6
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;

15
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 */

Loading…
Cancel
Save