Rumah > Artikel > pembangunan bahagian belakang > php单元测试有什么用
php单元测试是个好办法,它提供了自动化测试的方法,使敏捷开发的自动化测试成为可能。
php与其他语言不太一样,单元测试需要自己安装和配置,相对麻烦一点,不过单元测试对于提高库的稳定性和健壮性还是非常给力的,下面教大家怎么配置PHP单元测试 (推荐学习:PHP视频教程)
注意:php需升级到7.1版本以上
配置说明
全局安装phpunit命令脚本
$ wget https://phar.phpunit.de/phpunit-7.0.phar $ chmod +x phpunit-7.0.phar $ sudo mv phpunit-7.0.phar /usr/local/bin/phpunit $ phpunit --version PHPUnit x.y.z by Sebastian Bergmann and contributors.
全局安装安装phpunit代码
composer global require phpunit/phpunit
创建 phpunit.xml放在你的项目根目录,这个文件是 phpunit 会默认读取的一个配置文件:
<phpunit bootstrap="vendor/autoload.php"> <testsuites> <testsuite name="service"> <directory>tests</directory> </testsuite> </testsuites> </phpunit>
配置phpstorm单元phpunit.phar路径,Languages & Frameworks > PHP > PHPUinit
如我的phpunit本地的路径为/usr/local/bin/phpunit
配置单元测试类提示,Languages & Frameworks > PHP > include path
如我的phpunit包本地的路径为/Users/chenqionghe/.composer/vendor/phpunit
Atas ialah kandungan terperinci php单元测试有什么用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!