@backupStaticAttributes
最后更新于:2022-04-01 03:48:41
# @backupStaticAttributes
如果指定了 `@backupStaticAttributes` 标注,那么将在每个测试之前备份所有已声明的类的静态属性的值,并在测试完成之后全部恢复。它可以用在测试用例类或测试方法级别:
~~~
/**
* @backupStaticAttributes enabled
*/
class MyTest extends PHPUnit_Framework_TestCase
{
/**
* @backupStaticAttributes disabled
*/
public function testThatInteractsWithStaticAttributes()
{
// ...
}
}
~~~
### Note
受限于 PHP 的内部实现,在某些情况下即使使用了 `@backupStaticAttributes` 也可能有个别静态值出现意料外的延续,并污染后继测试。
详细信息参见 [the section called “全局状态”](# "全局状态")。