Skip to content

Commit

Permalink
test(scale): Add skeleton for scale testing
Browse files Browse the repository at this point in the history
  • Loading branch information
C47D committed Oct 20, 2023
1 parent 195c3f7 commit e7ba717
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions tests/src/test_cases/widgets/test_scale.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#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 */
}

void test_func_1(void)
{
TEST_FAIL();
}

#endif

0 comments on commit e7ba717

Please sign in to comment.