aboutsummaryrefslogtreecommitdiff
path: root/tests/src/test_cases/_test_template.c
blob: 5ad821137a715bbe5dd2e849985f6297d486de1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#if LV_BUILD_TEST
#include "../lvgl.h"

#include "unity/unity.h"

void setUp(void)
{
    /* Function run before every test */
}

void tearDown(void)
{
    /* Function run after every test */
    lv_obj_clean(lv_screen_active());
}

void test_func_1(void)
{
    TEST_FAIL();
}

#endif