From f23b7ddc2b4ff5e0db5475fca7ca9af191390f40 Mon Sep 17 00:00:00 2001 From: fdai7968 Date: Mon, 5 Feb 2024 20:26:27 +0000 Subject: [PATCH] added forgotten setup and teardown --- test/subtraction/subtraction.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/subtraction/subtraction.c b/test/subtraction/subtraction.c index 8894e75..d49be5c 100644 --- a/test/subtraction/subtraction.c +++ b/test/subtraction/subtraction.c @@ -1,5 +1,8 @@ #include "unity.h" #include "subtraction.h" +void setUp(){} + +void tearDown(){} void test_subtraction() { TEST_ASSERT_EQUAL_INT(1, subtract(3, 2));