| Test-Harness documentation | Contained in the Test-Harness distribution. |
TAP::Formatter::File - Harness output delegate for file output
Version 3.23
This provides file orientated output formatting for TAP::Harness.
use TAP::Formatter::File; my $harness = TAP::Formatter::File->new( \%args );
open_testSee TAP::Formatter::base
| Test-Harness documentation | Contained in the Test-Harness distribution. |
package TAP::Formatter::File; use strict; use TAP::Formatter::Base (); use TAP::Formatter::File::Session; use POSIX qw(strftime); use vars qw($VERSION @ISA); @ISA = qw(TAP::Formatter::Base);
$VERSION = '3.23';
sub open_test { my ( $self, $test, $parser ) = @_; my $session = TAP::Formatter::File::Session->new( { name => $test, formatter => $self, parser => $parser, } ); $session->header; return $session; } sub _should_show_count { return 0; } 1;