如何使用xdebug生成详细的代码覆盖率报告?

时间:2019-02-20 09:10:09

标签: php phpunit xdebug php-7 phpunit-testing

我正在使用PHPUnit 8.0.4,我的报告如下所示:

  Classes:  0.00% (0/1)
  Methods: 37.50% (9/24)
  Lines:   55.91% (123/220)

我正在使用以下所示的参数运行命令:

phpunit --coverage-html build/coverage-report --configuration phpunit.xml --testsuite query-parser

这些是我在phpunit.xml中的日志记录设置:

    <logging>
        <log type="coverage-html" target="./tmp/report" lowUpperBound="35"
             highLowerBound="70"/>
        <log type="coverage-clover" target="./tmp/coverage.xml"/>
        <log type="coverage-php" target="./tmp/coverage.serialized"/>
        <log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
        <log type="junit" target="./tmp/logfile.xml"/>
        <log type="testdox-html" target="./tmp/testdox.html"/>
        <log type="testdox-text" target="./tmp/testdox.txt"/>
    </logging>

我想看看为了编写其他测试以覆盖100%的代码覆盖率而未涵盖哪些行和方法。

这是我的html报告 enter image description here

1 个答案:

答案 0 :(得分:2)

您似乎创建了各种格式的代码覆盖率报告,但只看了一份纯文本(IMO没用)。打开PATHEXT以查看HTML报告。