Lines Matching refs:numoftests
73 int numoftests; member
83 uintmax_t numoftests; member
102 create_suite(const char * name, int numoftests, test_fn_t set_up, unit_test_t * tests, test_fn_t te… in create_suite() argument
108 suite->numoftests = numoftests; in create_suite()
125 logr("Number of tests: %d\n", suite->numoftests); in log_suite_info()
131 results.numoftests += (uintmax_t)suite->numoftests; in log_suite_results()
223 for (i = 0; i < suite->numoftests; i++) { in count_passed_suite_tests()
242 void _run_suite(int numoftests, test_fn_t set_up, UnitTests tests, test_fn_t tear_down, const char …
246 _run_suite(int numoftests, test_fn_t set_up, UnitTests tests, test_fn_t tear_down, const char * for… in _run_suite() argument
254 suite_t * suite = create_suite(name, numoftests, set_up, tests, tear_down); in _run_suite()
301 T_LOG("Total: %ju", results.numoftests); in log_aggregated_results()
303 T_LOG("Failed: %ju\n", results.numoftests - results.passed_tests); in log_aggregated_results()
305 T_QUIET; T_ASSERT_EQ(results.passed_tests, results.numoftests, in log_aggregated_results()
307 results.passed_tests, results.numoftests); in log_aggregated_results()