Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

tap2junit(1p) [debian man page]

TAP2JUNIT(1p)						User Contributed Perl Documentation					     TAP2JUNIT(1p)

NAME
tap2junit - Converts TAP output to JUnit SYNOPSIS
tap2junit [options] <filename> <filename> ... Options: --suffix <suffix> Suffix for JUnit output files (default ".xml") --verbose Display verbose status during conversion --name <name> Provide explicit name for the JUnit test --help/-? Display brief help message --man Display full documentation DESCRIPTION
"tap2junit" converts TAP output to JUnit. Give it a list of files containing TAP results and it will create a series of ????.junit.xml output files containing the JUnit representations of that TAP contained in the files. If you specify - as the filename, "tap2junit" will read from STDIN and write to STDOUT. You may also want to use the "--name" option to name the test explicitly (as the default name of "-" isn't going to make much sense). OPTIONS
--suffix <suffix> Specifies the suffix which is appended to all of the input files, in order to generate the filename for the JUnit XML file that is being output. If you want to live dangerously and over-write your original TAP files, you can set this to "" and your original TAP files will be over-written. Defaults to .xml --verbose Display verbose status information during the conversion (telling you which TAP file its working on). --name <name> Specifies an explicit name for the JUnit test. If no name is provided, a default name will be constructed based on the full path of the TAP file being processed. This option has also been aliased as "--junit_name" to provide compatibility with a patch from Joe McMahon. --help/-? Display brief help message. --man Displays the full documentation. AUTHOR
Graham TerMarsch <cpan@howlingfrog.com> COPYRIGHT
Copyright 2008-2010, Graham TerMarsch. All Rights Reserved. This is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
TAP::Formatter::JUnit. perl v5.14.2 2012-03-12 TAP2JUNIT(1p)

Check Out this Related Man Page

TAP::Parser::SourceHandler::File(3pm)			User Contributed Perl Documentation		     TAP::Parser::SourceHandler::File(3pm)

NAME
TAP::Parser::SourceHandler::File - Stream TAP from a text file. VERSION
Version 3.25 SYNOPSIS
use TAP::Parser::Source; use TAP::Parser::SourceHandler::File; my $source = TAP::Parser::Source->new->raw( 'file.tap' ); $source->assemble_meta; my $class = 'TAP::Parser::SourceHandler::File'; my $vote = $class->can_handle( $source ); my $iter = $class->make_iterator( $source ); DESCRIPTION
This is a raw TAP stored in a file TAP::Parser::SourceHandler - it has 2 jobs: 1. Figure out if the raw source it's given is a file containing raw TAP output. See TAP::Parser::IteratorFactory for more details. 2. Takes raw TAP from the text file given, and converts into an iterator. Unless you're writing a plugin or subclassing TAP::Parser, you probably won't need to use this module directly. METHODS
Class Methods "can_handle" my $vote = $class->can_handle( $source ); Only votes if $source looks like a regular file. Casts the following votes: 0.9 if it's a .tap file 0.9 if it has an extension matching any given in user config. "make_iterator" my $iterator = $class->make_iterator( $source ); Returns a new TAP::Parser::Iterator::Stream for the source. "croak"s on error. "iterator_class" The class of iterator to use, override if you're sub-classing. Defaults to TAP::Parser::Iterator::Stream. CONFIGURATION
{ extensions => [ @case_insensitive_exts_to_match ] } SUBCLASSING
Please see "SUBCLASSING" in TAP::Parser for a subclassing overview. SEE ALSO
TAP::Object, TAP::Parser, TAP::Parser::SourceHandler, TAP::Parser::SourceHandler::Executable, TAP::Parser::SourceHandler::Perl, TAP::Parser::SourceHandler::Handle, TAP::Parser::SourceHandler::RawTAP perl v5.14.2 2012-06-05 TAP::Parser::SourceHandler::File(3pm)
Man Page