Test2::EventFacet::Info::Table - 表格的中间表示。
表格的中间表示,用于在生成 Test2::EventFacet::Info 面板的专用 Test::API::Context 方法中使用。
use Test2::EventFacet::Info::Table;
use Test2::API qw/context/;
sub my_tool {
my $ctx = context();
...
$ctx->fail(
$name,
"failure diag message",
Test2::EventFacet::Info::Table->new(
# Required
rows => [['a', 'b'], ['c', 'd'], ...],
# Strongly Recommended
as_string => "... string to print when table cannot be rendered ...",
# Optional
header => ['col1', 'col2'],
collapse => $bool,
no_collapse => ['col1', ...],
),
);
...
$ctx->release;
}
my_tool();
以上所有内容都直接与 Test2::EventFacet::Info 中描述的表格 hashref 结构相关。
如果设置了表格,则返回表格的字符串形式,否则返回字符串 "<TABLE NOT DISPLAYED>"
。
这将返回 Test2::EventFacet::Info 用于表格的数据结构。
这将返回用于构建正确 Test2::EventFacet::Info 结构的参数。
return (table => $t->as_hash(), details => $t->as_string());
Test2 的源代码仓库可以在 http://github.com/Test-More/test-more/ 找到。
Copyright 2020 Chad Granum <[email protected]>.
本程序是自由软件;您可以根据与 Perl 本身相同的条款重新发布和/或修改它。
参见 https://dev.perl5.cn/licenses/