acid-drop

- Hacking the planet from a LilyGo T-Deck using custom firmware
git clone git://git.acid.vegas/acid-drop.git
Log | Files | Refs | Archive | README | LICENSE

_test_template.c (246B)

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