1 #if LV_BUILD_TEST 2 #include "../lvgl.h" 3 4 #include "unity/unity.h" 5 setUp(void)6void setUp(void) 7 { 8 /* Function run before every test */ 9 } 10 tearDown(void)11void tearDown(void) 12 { 13 /* Function run after every test */ 14 } 15 test_func_1(void)16void test_func_1(void) 17 { 18 TEST_FAIL(); 19 } 20 21 #endif 22