Browse Source

(Änderung an Unittest-Code und Produktiv-Code im selben Commit, wie von dem Herrn Papendieck erwünscht) x_wins_01_11_21() definiert und einen Test für die Funktion erstellt

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

6
src/c/funktionen.c

@ -48,3 +48,9 @@ int x_wins_00_10_20(char board[][3]) {
return 1; return 1;
} }
} }
int x_wins_01_11_21(char board[][3]) {
if (board[0][1] == 'X' && board[1][1] == 'X' && board[2][1] == 'X') {
return 1;
}
}

15
src/test/test_funktionen.c

@ -91,4 +91,19 @@ void test_x_wins_onIndex_00_10_20(void)
TEST_ASSERT_EQUAL_INT(expected, actual); TEST_ASSERT_EQUAL_INT(expected, actual);
} }
void test_x_wins_onIndex_01_11_21(void)
{
/* arrange */
int actual;
int expected = 1;
char board[][3] = {{' ','X',' '}, {' ','X',' '}, {' ','X',' '}};
/* act */
actual = x_wins_01_11_21(board);
/* assert */
TEST_ASSERT_EQUAL_INT(expected, actual);
}
#endif #endif
Loading…
Cancel
Save