From 0ad4d3c5d4bbc0488b3b902322673cba9b6d5452 Mon Sep 17 00:00:00 2001 From: fdai7820 Date: Thu, 8 Feb 2024 20:00:03 +0100 Subject: [PATCH] Test gleiche zahlen --- 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 a7ccb32..ce90e49 100644 --- a/src/test/test_duellist_spielesammlung_projekt.c +++ b/src/test/test_duellist_spielesammlung_projekt.c @@ -538,7 +538,18 @@ void test_modulo(void) TEST_ASSERT_EQUAL_INT(1, result); } +void test_compare_equalNumbers(void) +{ + /* arrange */ + int a = 5; + int b = 5; + + /* act */ + int result = compare(a, b); + /* assert */ + TEST_ASSERT_EQUAL_INT(0, result); +}