diff --git a/src/Spiellogik.h b/src/Spiellogik.h index 6ba18c2..35d8704 100644 --- a/src/Spiellogik.h +++ b/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 diff --git a/test/test_Spiellogik.c b/test/test_Spiellogik.c index c5fe0dc..9e4ab05 100644 --- a/test/test_Spiellogik.c +++ b/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