php与其他语言不太一样,单元测试需要自己安装和配置,相对麻烦一点,不过单元测试对于提高库的稳定性和健壮性还是非常给力的,下面教大家怎么配置PHP单元测试
注意:php需升级到7.1版本以上
配置说明
1.全局安装phpunit命令脚本
1
2
3
4
5
|
$ 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. |
2.全局安装安装phpunit代码
1
|
composer global require phpunit/phpunit |
3.创建 phpunit.xml放在你的项目根目录, 这个文件是 phpunit 会默认读取的一个配置文件:
1
2
3
4
5
6
7
|
< phpunit bootstrap="vendor/autoload.php"> < testsuites > < testsuite name="service"> < directory >tests</ directory > </ testsuite > </ testsuites > </ phpunit > |