moka/tests/main.c

17 lines
318 B
C

#include <commons.h>
#include <check.h>
int main()
{
Suite* s = suite_create("Moka Frontend");
SRunner* runner = srunner_create(s);
srunner_run_all(runner, CK_VERBOSE);
int failed = srunner_ntests_failed(runner);
srunner_free(runner);
return (failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
}