librtti/testsuite/test.c
Rongsong Shen c8c1749347 Import source to librtti
Summary:

- Import initial source

Test Plan:
NA
2026-01-29 17:23:07 +08:00

29 lines
331 B
C

#include <stdio.h>
#include <stdlib.h>
#include <unity/unity.h>
void setUp(void)
{
printf("\n");
return;
}
void tearDown(void)
{
printf("\n");
return;
}
extern void test_iter(void);
#define TEST(x) x()
int main(int argc, char* argv[])
{
UNITY_BEGIN();
TEST(test_iter);
return UNITY_END();
}