发布于 2017-02-09 03:02:44 | 137 次阅读 | 评论: 0 | 来源: 网友投递
PHPUnit 轻量级的PHP测试框架
PHPUnit是一个轻量级的PHP测试框架。它是在PHP5下面对JUnit3系列版本的完整移植,是xUnit测试框架家族的一员(它们都基于模式先锋Kent Beck的设计)。
PHPUnit 开发团队宣布 PHPUnit 6.0.0 发布了。此版本添加了新功能,更改并删除了现有功能,并修复了错误。此处提供了详细的更改列表。
Dropping support for PHP 5.6
According to our release process, PHPUnit must be compatible with all versions of PHP that are actively supported by the PHP project.
Active support for PHP 5.6 ended on December 31, 2016. The only actively supported versions of PHP as of February, 3 2017 are PHP 7.0 and PHP 7.1.
PHPUnit's units of code are now namespaced. For instance, PHPUnit_Framework_TestCase is now PHPUnitFrameworkTestCase
PHPUnit is now strict about useless tests by default. Use the --dont-report-useless-tests commandline option or the beStrictAboutTestsThatDoNotTestAnything="false"configuration directive to disable this risky test check.
Global and super-global variables are no longer backed up before and restored after each test by default. Use the --globals-backup commandline option or the backupGlobals="true" configuration directive to enable this feature.
The logfile format generated using the --log-junit option and the <log type="junit" target="..."/> configuration directive has been updated to match the current format used by JUnit. Due to this change you may need to update how your continuous integration server processes test result logfiles generated by PHPUnit.
We distribute a PHP Archive (PHAR) that contains everything you need in order to use PHPUnit. Simply download it from here, make it executable, and put it into your $PATH, for instance.
Alternatively, you may use Composer to download and install PHPUnit as well as its dependencies.
PHPUnit 6.0 requires PHP 7.0; using the latest version of PHP is highly recommended. The documentation has a detailed list of the PHP extensions that are required to use PHPUnit.
Following our release process, PHPUnit 5.7 will receive bug fixes until February 2, 2018.
Following our release process, PHPUnit 4.8 has reached End of Life as of February, 3 2017 and will no longer receive bug fixes.
If you use Chef, Puppet, or a similar tool to download and install a PHPUnit 4.8 PHP archive (PHAR) then please change the URL from https://phar.phpunit.de/phpunit-old.phar to https://phar.phpunit.de/phpunit-4.8.phar. The URL https://phar.phpunit.de/phpunit-old.phar will not be offered in the future anymore. It will continue to work for now and it will always redirect to the latest version of PHPUnit 4.8.
The goal of our release process is to deliver new features into the hands of our users every two months. The next release with new features will be PHPUnit 6.1. It is currently in development and will become stable on April 7, 2017.
PHPUnit 7.0, which is scheduled for February 2, 2018, will no longer support PHP 7.0.
Following our release process, PHPUnit 6 will receive bug fixes until February 8, 2019.