From 84d327063ed37e1793c6832097b6c176736a9fd1 Mon Sep 17 00:00:00 2001 From: fdai7820 Date: Thu, 8 Feb 2024 19:59:13 +0100 Subject: [PATCH] Test Modulo --- 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 9823429..a7ccb32 100644 --- a/src/test/test_duellist_spielesammlung_projekt.c +++ b/src/test/test_duellist_spielesammlung_projekt.c @@ -525,7 +525,18 @@ void test_division_byZero_returnsZero(void) TEST_ASSERT_EQUAL_INT(0, result); } +void test_modulo(void) +{ + /* arrange */ + int a = 15; + int b = 7; + + /* act */ + int result = modulo(a, b); + /* assert */ + TEST_ASSERT_EQUAL_INT(1, result); +}