@ -19,4 +19,4 @@
:failed: 0
:ignored: 0
:stdout: []
:time: 0.04322500000034779
:time: 0.04704379999930097
@ -23,4 +23,4 @@
:time: 0.8461330000000089
:time: 0.5837992999995549
:time: 0.04038649999984045
:time: 0.04200270000001183
@ -83,4 +83,4 @@
:time: 0.04073479999988194
:time: 0.04186870000012277
@ -15,4 +15,4 @@
:time: 0.0402087999991636
:time: 0.042140999999901396
@ -2,5 +2,6 @@
#define WORTSPIEL_H
void loescheBuchstaben(char* wort, char buchstabe);
int zaehleBuchstaben(const char* wort, char buchstabe);
#endif // WORTSPIEL_H
@ -31,5 +31,11 @@ void testLoescheBuchstaben_Leereswort(void) {
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