From ef25f8f187df4c9dcd68db8f399cc797f1dc62d9 Mon Sep 17 00:00:00 2001 From: Lennart Goetze Date: Wed, 7 Feb 2024 18:14:47 +0100 Subject: [PATCH] Unittest: umdrehen normales Wort --- src/WortSpiel.h | 1 + test/test_WortSpiel.c | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/src/WortSpiel.h b/src/WortSpiel.h index a81331f..1d099d4 100644 --- a/src/WortSpiel.h +++ b/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 diff --git a/test/test_WortSpiel.c b/test/test_WortSpiel.c index d379e58..83768ec 100644 --- a/test/test_WortSpiel.c +++ b/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