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");
获取预期测试数量
获取指令(例如 TODO、skip_all 或 no_plan)。
获取指令的原因。
Test2 的源代码存储库可在 http://github.com/Test-More/test-more/ 找到。
版权所有 2020 Chad Granum <[email protected]>。
本程序是免费软件;您可以在与 Perl 自身相同的条款下重新分发或修改它。
请参阅 https://dev.perl5.cn/licenses/