Lines Matching defs:run_tests
23 @EXPORT = qw( run_tests check_tests check_test cmp_results show_space );
80 $found = ($sub eq "Test::Tester::run_tests");
84 # die "Didn't find 'run_tests' in caller stack" unless $found;
88 sub run_tests
92 $runner->run_tests(@_);
115 my ($prem, @results) = eval { run_tests($test, $name) };
354 my ($premature, @results) = run_tests(
404 my ($premature, @results) = run_tests(
505 run_tests( sub { my_test_function("a", "b") } );
511 run_tests(sub { deeper() });
581 =head3 ($premature, @results) = run_tests(\&test_sub)
585 run_tests runs the subroutine in $test_sub and captures the results of any
622 check_tests combines run_tests and cmp_tests into a single call. It also
625 It returns the same values as run_tests, so you can further examine the test
634 check_test is a wrapper around check_tests. It combines run_tests and
639 It returns the same values as run_tests, so you can further examine the test