working on gfx module added a few draw function gfx still wip added tamplate for test
26 lines
199 B
C
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();
|
|
} |