From 0023a1ded2c7b6a98ebfc8061e0a29457923dd34 Mon Sep 17 00:00:00 2001 From: fdai7820 Date: Thu, 8 Feb 2024 19:58:04 +0100 Subject: [PATCH] Test Division --- 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 0a5ad4d..4e56ce9 100644 --- a/src/test/test_duellist_spielesammlung_projekt.c +++ b/src/test/test_duellist_spielesammlung_projekt.c @@ -499,7 +499,18 @@ void test_multiplication(void) TEST_ASSERT_EQUAL_INT(50, result); } +void test_division(void) +{ + /* arrange */ + int a = 15; + int b = 3; + + /* act */ + int result = division(a, b); + /* assert */ + TEST_ASSERT_EQUAL_INT(5, result); +}