Browse Source

Unittest Funktion sucheXWert

main
Jannis 2 years ago
parent
commit
4001500846
  1. 1
      src/Spiellogik.h
  2. 7
      test/test_Spiellogik.c

1
src/Spiellogik.h

@ -7,5 +7,6 @@ int win(int realU[N][N]);
int lose(int realU[N][N], char richtung);
void Apfel(int realU[N][N]);
void Umgebung(int str[N][N]);
int sucheXWert(int realU[N][N]);
#endif

7
test/test_Spiellogik.c

@ -10,7 +10,14 @@ void tearDown(void){
}
//Test für sucheXWert
void test_sucheXWertde(void){
int realU[N][N] = {0};
realU[15][19] = 12;
int result = sucheXWert(realU);
TEST_ASSERT_EQUAL_INT(15, result);
}
//Tests für Funktion win

Loading…
Cancel
Save