在 Laravel 5.7 使用 PHPUnit 查看程式碼覆蓋率報告

環境

  • macOS
  • xdebug 2.6.1

做法

執行 phpunit 指令,並加上 --coverage-html 參數,以及輸出路徑。

1
phpunit --coverage-html ./report

修改 phpunit.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="true"
>
<logging>
<log type="coverage-html"
target="./report"
charset="UTF-8"
highlight="true"
lowUpperBound="50"
highLowerBound="80"/>
</logging>
</phpunit>

執行 phpunit 指令。

1
phpunit