diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-12-08 09:21:32 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-12-08 09:21:32 -0700 |
commit | b5ad184c1bcef78e7c2b052bcffc71f4c7381bcb (patch) | |
tree | f060afc8dc7e896ad48731b58b5414b4c6ab627b /test/main.c | |
parent | b8c662456f2caf219de2a21f137f8fd61e34b0b2 (diff) | |
download | cmath-b5ad184c1bcef78e7c2b052bcffc71f4c7381bcb.tar.gz cmath-b5ad184c1bcef78e7c2b052bcffc71f4c7381bcb.zip |
hw8 checkpoint
Diffstat (limited to 'test/main.c')
-rw-r--r-- | test/main.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/main.c b/test/main.c index 5d16fe7..6a92d4a 100644 --- a/test/main.c +++ b/test/main.c @@ -1,5 +1,12 @@ #include "lizfcm.test.h" +#include <stdlib.h> +#include <time.h> UTEST(basic, unit_tests) { ASSERT_TRUE(1); } -UTEST_MAIN(); +UTEST_STATE(); +int main(int argc, const char *const argv[]) { + srand(time(NULL)); + + return utest_main(argc, argv); +} |