标签:load -o https 图片 分享图片 配置 test 技术 mon
wget https://phar.phpunit.de/phpunit-7.0.phar
chmod +x phpunit-7.0.phar
mv phpunit-7.0.phar /usr/local/bin/phpunit
phpunit --version
git clone https://github.com/sebastianbergmann/money.git
b. 进入测试包:
cd money
c. 直接测试:
phpunit --bootstrap src/autoload.php tests
d. 创建 xml 配置文件测试:
d-1. 创建配置文件:
vim phpunit.xml
<phpunit bootstrap="src/autoload.php">
<testsuites>
<testsuite name="随便取">
<directory>tests</directory>
</testsuite>
</testsuites>
</phpunit>
d-2. 命令:
phpunit tests
标签:load -o https 图片 分享图片 配置 test 技术 mon
原文地址:http://blog.51cto.com/12173069/2299866