内容

名称

Test2::EventFacet::Plan - 用于设置计划的面

描述

事件在需要设置计划时使用此面。

字段

$string = $plan->{details}
$string = $plan->details()

对设置计划的人类可读解释。这通常不会被大多数格式化程序渲染,除非 skip 字段也被设置。

$positive_int = $plan->{count}
$positive_int = $plan->count()

设置预期断言的数量。当 skipnone 也被设置时,这通常应该设置为 0

$bool = $plan->{skip}
$bool = $plan->skip()

如果为真,则应跳过整个测试。这通常与 details 字段中的解释以及 control 面中 terminate 设置为 0 配合使用。

$bool = $plan->{none}
$bool = $plan->none()

这主要用于遗留的 Test::Builder 测试,这些测试将计划设置为 no plan,这是一个早于更好的 done_testing() 的构造。

如果您在非遗留代码中使用它,您可能需要重新考虑您的生活轨迹,也许隐居生活适合您?

SOURCE

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

MAINTAINERS

Chad Granum <[email protected]>

AUTHORS

Chad Granum <[email protected]>

COPYRIGHT

Copyright 2020 Chad Granum <[email protected]>.

本程序是自由软件;您可以在 Perl 本身的相同条款下重新发布和/或修改它。

参见 https://dev.perl5.cn/licenses/