The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Test::Builder2::Formatter::Null - A formatter that does nothing

SYNOPSIS

    use Test::Builder::Formatter::Null;
    my $null = Test::Builder2::Formatter::Null->new;

    # Make your tests output nothing
    $tb->formatter($null);

DESCRIPTION

This formatter will do nothing. Its useful if you want your tests to produce no output.