Files
uC_libs/test/oled/oled_test.c
bartool d0b533daf9 added gfx (empty test)
working on gfx module
added a few draw function
gfx still wip
added tamplate for test
2022-06-19 19:46:17 +02:00

26 lines
199 B
C

#include "unity.h"
void setUp(void)
{
}
void tearDown(void)
{
}
void test_one(void)
{
TEST_FAIL();
}
int main(void)
{
UNITY_BEGIN();
RUN_TEST(test_one);
return UNITY_END();
}