AnimTestbed/3rdparty/Handmade-Math/test/hmm_test.c

10 lines
179 B
C
Raw Normal View History

2021-11-11 21:22:24 +01:00
#include "hmm_test.h"
int main()
{
int tests_failed = hmt_run_all_tests();
int coverage_failed = hmt_check_all_coverage();
return tests_failed || coverage_failed;
}