diff --git a/src/WortSpiel.h b/src/WortSpiel.h index a81331f..1d099d4 100644 --- a/src/WortSpiel.h +++ b/src/WortSpiel.h @@ -3,5 +3,6 @@ void loescheBuchstaben(char* wort, char buchstabe); int zaehleBuchstaben(const char* wort, char buchstabe); +void umdrehenWort(char* wort); #endif // WORTSPIEL_H diff --git a/test/test_WortSpiel.c b/test/test_WortSpiel.c index d379e58..83768ec 100644 --- a/test/test_WortSpiel.c +++ b/test/test_WortSpiel.c @@ -50,5 +50,11 @@ void testZaehleBuchstaben_Leereswort(void) { TEST_ASSERT_EQUAL_INT(0, anzahl2); } +void testUmdrehenWort_normalesWort(void) { + // Testfall 1: Umdrehen eines normalen Wortes + char wort1[] = "Hello"; + umdrehenWort(wort1); + TEST_ASSERT_EQUAL_STRING("olleH", wort1); +} #endif // TEST