diff options
Diffstat (limited to 'Homework/math4610/test/main.c')
| -rw-r--r-- | Homework/math4610/test/main.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Homework/math4610/test/main.c b/Homework/math4610/test/main.c new file mode 100644 index 0000000..6a92d4a --- /dev/null +++ b/Homework/math4610/test/main.c @@ -0,0 +1,12 @@ +#include "lizfcm.test.h" +#include <stdlib.h> +#include <time.h> + +UTEST(basic, unit_tests) { ASSERT_TRUE(1); } + +UTEST_STATE(); +int main(int argc, const char *const argv[]) { + srand(time(NULL)); + + return utest_main(argc, argv); +} |
