test(template) simplify _test_template.c

Originally added here https://github.com/lvgl/lvgl/commit/727808904069ada481f72b0b2c4466ea224fc067
but lost somehow
This commit is contained in:
Gabor Kiss-Vamosi
2021-11-11 17:36:12 +01:00
parent 075831a54c
commit b279f63d6b
+1 -6
View File
@@ -3,11 +3,6 @@
#include "unity/unity.h"
void setUp(void);
void tearDown(void);
void test_func_1(void);
void setUp(void)
{
/* Function run before every test */
@@ -20,7 +15,7 @@ void tearDown(void)
void test_func_1(void)
{
TEST_ASSERT_EQUAL(actual, expected);
TEST_FAIL();
}
#endif