
Test::Builder::Output - manages output for Test::Builder

See Test::Builder.

This class controls the output filehandles for Test::Builder. You probably do not need to use it directly.

This class defines the following methods:
new( args_hash )Initializes a new Test::Builder::Output object (when you create it with new),
passing optional arguments in args_hash.
They are:
outputAn IO PMC for the filehandle to which normal output should go. This uses STDOUT by default.
diag_outputAn IO PMC for the filehandle to which diagnostic output should go. This uses STDERR by default.
write( message )Writes the string message to the output filehandle,
TAP-escaping any unescaped newlines.
diag( message )Writes the string message to the diagnostic filehandle,
TAP-escaping any unescaped newlines.

Written and maintained by chromatic,
chromatic at wgz dot org,
based on the Perl 6 port he wrote,
based on the original Perl 5 version he wrote with ideas from Michael G.
Schwern.
Please send patches,
feedback,
and suggestions to the Perl 6 internals mailing list.

Copyright (C) 2005-2008, Parrot Foundation.