Browse Source

Unittest: umdrehen normales Wort

remotes/origin/wortspieldev
Lennart Goetze 11 months ago
parent
commit
ef25f8f187
  1. 1
      src/WortSpiel.h
  2. 6
      test/test_WortSpiel.c

1
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

6
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
Loading…
Cancel
Save