2023-10-18 14:49:39 -04:00
|
|
|
#include "lizfcm.test.h"
|
2023-12-08 11:21:32 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
2023-10-11 12:04:04 -04:00
|
|
|
|
2023-10-18 14:49:39 -04:00
|
|
|
UTEST(basic, unit_tests) { ASSERT_TRUE(1); }
|
2023-10-11 12:04:04 -04:00
|
|
|
|
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);
|
|
|
|
}
|