编程语言
首页 > 编程语言> > PHPUnit 在线中文手册

PHPUnit 在线中文手册

作者:互联网

PHPUnit 在线中文手册

https://phpunit.readthedocs.io/zh_CN/latest/index.html

laravel 设置代码覆盖率统计,

安装好php xdebug 扩展,同时 php.ini 增加 

xdebug.mode=coverage

phpunit.xml <phpunit> 标记内增加如下代码

	<logging>
     <log type="coverage-html" target="./test-result/report" lowUpperBound="35"
          highLowerBound="70"/>
   </logging>

标签:中文,xdebug,手册,phpunit,php,PHPUnit
来源: https://blog.csdn.net/fevan/article/details/120784531