Test2::Harness::Renderer(3pm) | User Contributed Perl Documentation | Test2::Harness::Renderer(3pm) |
Test2::Harness::Renderer - Base class for Test2::Harness event renderers.
These are set at construction time and cannot be changed.
%ARGS:
{ pass => $pass, # boolean, did the test run pass or fail? failed => [ # Jobs that failed, and did not pass on a retry [$job_id1, $file1], # Failing job 1 [$job_id2, $file2], # Failing job 2 ... ], retried => [ # Jobs that failed and were retried [$job_id1, $times_run1, $file1, $passed_eventually1], # Passed_eventually is a boolean [$job_id2, $times_run2, $file2, $passed_eventually2], ... ], hatled => [ # Jobs that caused the entire test suite to halt [$job_id1, $file1, $halt_reason1], # halt_reason is a human readible string [$job_id2, $file2, $halt_reason2], ], }
The source code repository for Test2-Harness can be found at http://github.com/Test-More/Test2-Harness/.
Copyright 2020 Chad Granum <exodist7@gmail.com>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See http://dev.perl.org/licenses/
2023-03-12 | perl v5.36.0 |