在 PHPUnit 的配置文件中,3.4
您可以在版本中包含一个引导文件,如下所示:
<phpunit backupGlobals="false"
backupStaticAttributes="true"
bootstrap="/path/to/bootstrap.php"
http://www.phpunit.de/manual/3.4/en/appendixes.configuration.html
但是由于3.5
此选项已被注释掉,因此您不能再使用它:
<phpunit backupGlobals="true"
backupStaticAttributes="false"
<!--bootstrap="/path/to/bootstrap.php"-->
http://www.phpunit.de/manual/3.5/en/appendixes.configuration.html
我找不到任何关于为什么禁用此选项的参考。我查找了 PHPUnit 的发行说明,3.5
看看他们是否提到了任何内容,但我发现根本没有提到引导程序。
http://sebastian-bergmann.de/archives/897-PHPUnit-3.5.html
https://github.com/sebastianbergmann/phpunit/blob/3.5/README.markdown
我仍然欢迎任何知道为什么删除此选项的人发表评论。