@ -3,5 +3,6 @@
void loescheBuchstaben(char* wort, char buchstabe);
int zaehleBuchstaben(const char* wort, char buchstabe);
void umdrehenWort(char* wort);
#endif // WORTSPIEL_H
@ -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