Browse Source

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

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

6
src/c/funktionen.c

@ -85,6 +85,12 @@ int x_wins_00_11_22(char board[][3]) {
}
}
int x_wins_02_11_20(char board[][3]) {
if (board[0][2] == 'X' && board[1][1] == 'X' && board[2][0] == 'X') {
return 1;
}
}
int string_character_counter(char string[]) {
int stringLength = 0;

15
src/test/test_funktionen.c

@ -181,6 +181,21 @@ void test_x_wins_onIndex_00_11_22(void)
TEST_ASSERT_EQUAL_INT(expected, actual);
}
void test_x_wins_onIndex_02_11_20(void)
{
/* arrange */
int actual;
int expected = 1;
char board[][3] = {{' ',' ','X'}, {' ','X',' '}, {'X',' ',' '}};
/* act */
actual = x_wins_02_11_20(board);
/* assert */
TEST_ASSERT_EQUAL_INT(expected, actual);
}
void test_stringLaenge_von_Kokosnuss(void)
{
/* arrange */

Loading…
Cancel
Save