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

use strict;
use warnings;

use Test::Kit;
use Test::Builder;

include 'Test::More';

include 'Test::Output';

my $builder = Test::Builder->new;
binmode STDOUT, ':encoding(utf-8)';
binmode STDERR, ':encoding(utf-8)';
binmode $builder->output, ':encoding(utf-8)';
binmode $builder->failure_output, ':encoding(utf-8)';
binmode $builder->failure_output, ':encoding(utf-8)';

1;