From 3acd1fb735a7ff637282ad976192e82d7b7434c3 Mon Sep 17 00:00:00 2001 From: fdai7820 Date: Thu, 8 Feb 2024 20:01:30 +0100 Subject: [PATCH] Test zahl1 groser zahl2 --- src/test/test_duellist_spielesammlung_projekt.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/test/test_duellist_spielesammlung_projekt.c b/src/test/test_duellist_spielesammlung_projekt.c index 10e0082..67a9fdf 100644 --- a/src/test/test_duellist_spielesammlung_projekt.c +++ b/src/test/test_duellist_spielesammlung_projekt.c @@ -564,7 +564,18 @@ void test_compare_aLessThanB(void) TEST_ASSERT_EQUAL_INT(-1, result); } +void test_compare_aGreaterThanB(void) +{ + /* arrange */ + int a = 10; + int b = 7; + /* act */ + int result = compare(a, b); + + /* assert */ + TEST_ASSERT_EQUAL_INT(1, result); +}