Lines Matching full:tests
18 my $sample_tests = 't/sample-tests';
20 plan tests => 56;
60 # normal tests in verbose mode
74 'All tests successful.',
79 my $expected_summary = qr{^Files=1, Tests=1, +\d+ wallclock secs};
103 'All tests successful.',
108 $expected_summary = qr{^Files=1, Tests=1, +\d+ wallclock secs};
138 'All tests successful.',
143 $expected_summary = qr{^Files=2, Tests=2, +\d+ wallclock secs};
151 # normal tests in quiet mode
155 'Run tests with whisper';
161 'All tests successful.',
167 $expected_summary = qr/^Files=1, Tests=1, +\d+ wallclock secs/;
175 # normal tests in really_quiet mode
178 ok _runtests( $harness_mute, "$source_tests/harness" ), 'Run tests mute';
182 'All tests successful.',
188 $expected_summary = qr/^Files=1, Tests=1, +\d+ wallclock secs/;
196 # normal tests with failures
200 'Run tests with failures';
228 "$source_tests/harness_failure (Wstat: 0 Tests: 2 Failed: 1)",
236 # quiet tests with failures
240 'Run whisper tests with failures';
249 "$source_tests/harness_failure (Wstat: 0 Tests: 2 Failed: 1)",
259 # really quiet tests with failures
263 'Run mute tests with failures';
270 "$source_tests/harness_failure (Wstat: 0 Tests: 2 Failed: 1)",
287 'Run tests with directives';
296 'All tests successful.',
301 #"$source_tests/harness_directives (Wstat: 0 Tests: 3 Failed: 0)",
302 #'Tests skipped:',
309 $expected_summary = qr/^Files=1, Tests=3, +\d+ wallclock secs/;
318 # normal tests with bad tap
322 'Run tests with bad TAP';
344 "$source_tests/harness_badtap (Wstat: 0 Tests: 2 Failed: 1)",
357 'Run tests with failures only';
367 "$source_tests/harness_failure (Wstat: 0 Tests: 2 Failed: 1)",
376 $expected_summary = qr/^Files=1, Tests=2, +\d+ wallclock secs/;
379 # check the status output for no tests
383 'Run tests with failures';
392 "$sample_tests/no_output (Wstat: 0 Tests: 0 Failed: 0)",
400 $expected_summary = qr/^Files=1, Tests=2, +\d+ wallclock secs/;
408 'Run tests with comments';
420 "$source_tests/harness_failure (Wstat: 0 Tests: 2 Failed: 1)",
429 $expected_summary = qr/^Files=1, Tests=2, +\d+ wallclock secs/;
438 'Run tests with failures and comments';
452 "$source_tests/harness_failure (Wstat: 0 Tests: 2 Failed: 1)",
461 $expected_summary = qr/^Files=1, Tests=2, +\d+ wallclock secs/;
473 my ( $harness, @tests ) = @_;
475 my $aggregate = $harness->runtests(@tests);