From d9047108579447a85c2e825892c2b899d2573010 Mon Sep 17 00:00:00 2001 From: fdai7820 Date: Thu, 8 Feb 2024 20:05:31 +0100 Subject: [PATCH] Test User Wahl --- src/test/test_duellist_spielesammlung_projekt.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/test/test_duellist_spielesammlung_projekt.c b/src/test/test_duellist_spielesammlung_projekt.c index 088cbe0..863a73c 100644 --- a/src/test/test_duellist_spielesammlung_projekt.c +++ b/src/test/test_duellist_spielesammlung_projekt.c @@ -650,7 +650,17 @@ void test_displayMenu_validMenu(void) displayMenu(); } +void test_getUserChoice_invalidInput(void) +{ + /* arrange */ + freopen("invalid_input.txt", "r", stdin); + + /* act */ + int result = getUserChoice(); + /* assert */ + +}