From f7ed7ffda1af874f3a3c533d04e11ef53d26aefe Mon Sep 17 00:00:00 2001 From: fdai7820 Date: Thu, 8 Feb 2024 20:02:58 +0100 Subject: [PATCH] Test Exponent mit negative zahl --- 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 d3bde68..3afc2bc 100644 --- a/src/test/test_duellist_spielesammlung_projekt.c +++ b/src/test/test_duellist_spielesammlung_projekt.c @@ -590,7 +590,18 @@ void test_exponentiation(void) TEST_ASSERT_EQUAL_INT(8, result); } +void test_exponentiation_negativeExponent(void) +{ + /* arrange */ + int base = 2; + int exponent = -3; + /* act */ + int result = exponentiation(base, exponent); + + /* assert */ + TEST_ASSERT_EQUAL_INT(0, result); +}