|
@ -31,5 +31,11 @@ void testLoescheBuchstaben_Leereswort(void) { |
|
|
TEST_ASSERT_EQUAL_STRING("", wort3); |
|
|
TEST_ASSERT_EQUAL_STRING("", wort3); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void testZaehleBuchstaben_Buchstabenexistiert(void) { |
|
|
|
|
|
// Testfall 1: Buchstabe existiert im Wort |
|
|
|
|
|
char wort1[] = "Beispiel"; |
|
|
|
|
|
int anzahl1 = zaehleBuchstaben(wort1, 'i'); |
|
|
|
|
|
TEST_ASSERT_EQUAL_INT(2, anzahl1); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
#endif // TEST |
|
|
#endif // TEST |