lizfcm/test/main.c

13 lines
229 B
C
Raw Normal View History

#include "lizfcm.test.h"
2023-12-08 11:21:32 -05:00
#include <stdlib.h>
#include <time.h>
UTEST(basic, unit_tests) { ASSERT_TRUE(1); }
2023-12-08 11:21:32 -05:00
UTEST_STATE();
int main(int argc, const char *const argv[]) {
srand(time(NULL));
return utest_main(argc, argv);
}