@ -4,5 +4,6 @@
void loescheBuchstaben(char* wort, char buchstabe);
int zaehleBuchstaben(const char* wort, char buchstabe);
void umdrehenWort(char* wort);
void testSucheBuchstabe_existiert(void);
#endif // WORTSPIEL_H
@ -69,7 +69,12 @@ void testUmdrehenWort_einBuchstabe(void) {
TEST_ASSERT_EQUAL_STRING("A", wort3);
}
void testSucheBuchstabe_existiert(void) {
char wort1[] = "Programming";
int index1 = sucheBuchstabe(wort1, 'g');
TEST_ASSERT_EQUAL_INT(3, index1);