PHPUnit9.0 标注-@before
2022-03-24 10:58 更新
PHPUnit9.0 标注集合
@before
标注用于指明此方法应当在测试用例类中的每个测试方法开始运行之前调用。
<?php declare(strict_types=1);
use PHPUnit\Framework\TestCase;
final class MyTest extends TestCase
{
/**
* @before
*/
public function setupSomeFixtures(): void
{
// ...
}
/**
* @before
*/
public function setupSomeOtherFixtures(): void
{
// ...
}
}
以上内容是否对您有帮助:
更多建议: