diff --git a/src/test/test_duellist_spielesammlung_projekt.c b/src/test/test_duellist_spielesammlung_projekt.c index 20efdef..088cbe0 100644 --- a/src/test/test_duellist_spielesammlung_projekt.c +++ b/src/test/test_duellist_spielesammlung_projekt.c @@ -640,7 +640,15 @@ void test_displayResult_correctResult(void) } +void test_displayMenu_validMenu(void) +{ + /* arrange */ + /* act */ + // Since displayMenu() only prints to the console, we can't use TEST_ASSERT. + // Manually verify the output in the console during test execution. + displayMenu(); +}