From 576e1c2431f9e43531633d793422cddaae166aae Mon Sep 17 00:00:00 2001 From: fdai7731 Date: Thu, 8 Feb 2024 17:55:28 +0100 Subject: [PATCH] test_minus() --- src/test/c/test_Mathe.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/test/c/test_Mathe.c b/src/test/c/test_Mathe.c index b7f5554..ebddf8d 100644 --- a/src/test/c/test_Mathe.c +++ b/src/test/c/test_Mathe.c @@ -111,6 +111,19 @@ int a=addiere(10, 5); +void test_minus() +{ + +int a=subtrahiere(10, 5); + /* assert */ + TEST_ASSERT_EQUAL_INT(a,5); + + + + +} + +