From d991bdf2a13a37752636afde4c211e82198be590 Mon Sep 17 00:00:00 2001 From: fdai7731 Date: Thu, 8 Feb 2024 17:53:55 +0100 Subject: [PATCH] test_plus --- src/test/c/test_Mathe.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/test/c/test_Mathe.c b/src/test/c/test_Mathe.c index e32f775..b7f5554 100644 --- a/src/test/c/test_Mathe.c +++ b/src/test/c/test_Mathe.c @@ -97,6 +97,20 @@ int a=dividiere(10, 5); +void test_plus() +{ + +int a=addiere(10, 5); + /* assert */ + TEST_ASSERT_EQUAL_INT(a,15); + + + + +} + + +