#include #include #include bool _did_tests_fail; TEST(basic_math) { TEST_IF(2 + 2 == 4); TEST_IF(2 * 2 == 4); } void tests_all() { _did_tests_fail = false; TEST_RUN(basic_math); if (_did_tests_fail) panic(); }