From a9010f68ccf3ff3acc319a46f1f55820fc6dbbd8 Mon Sep 17 00:00:00 2001 From: fdai7731 Date: Thu, 8 Feb 2024 17:38:56 +0100 Subject: [PATCH] test_Mathe_multi --- src/test/c/test_Mathe.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/test/c/test_Mathe.c b/src/test/c/test_Mathe.c index ee30654..7d8ec5d 100644 --- a/src/test/c/test_Mathe.c +++ b/src/test/c/test_Mathe.c @@ -27,6 +27,15 @@ void test_Mathe_minus(void) } +void test_Mathe_multi(void) +{ + + int a=berechneErgebnis(1,2,'*'); + /* assert */ + TEST_ASSERT_EQUAL_INT(a,2); +} + +