The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

# This test tests whether TAP::Harness::JUnit can be
# instantialized without a xmlfile argument (rt#42069)

use strict;
use warnings;

use TAP::Harness::JUnit;
use Test::More;

plan tests => 3;

my $harness;
close STDERR;
eval { $harness = TAP::Harness::JUnit->new };

ok( !$@ );
ok( $harness );
isa_ok( $harness, 'TAP::Harness::JUnit');