内容

名称

Test2::Event::Plan - 计划事件

描述

无论何时声明计划、调用完成测试或完成子文本,都会触发计划事件。

语法

use Test2::API qw/context/;
use Test2::Event::Plan;

my $ctx = context();

# Plan for 10 tests to run
my $event = $ctx->plan(10);

# Plan to skip all tests (will exit 0)
$ctx->plan(0, skip_all => "These tests need to be skipped");

访问器

$num = $plan->max

获取预期测试数量

$dir = $plan->directive

获取指令(例如 TODO、skip_all 或 no_plan)。

$reason = $plan->reason

获取指令的原因。

SOURCE

Test2 的源代码存储库可在 http://github.com/Test-More/test-more/ 找到。

MAINTAINERS

Chad Granum <[email protected]>

AUTHORS

Chad Granum <[email protected]>

COPYRIGHT

版权所有 2020 Chad Granum <[email protected]>。

本程序是免费软件;您可以在与 Perl 自身相同的条款下重新分发或修改它。

请参阅 https://dev.perl5.cn/licenses/