PhpStormからDockerを使ってカバレッジを取得する
はじめに
テストケースの確認用にカバレッジを見ておきたい事もある。
CLI Interpreterの追加
phpunit.xmlの用意
テスト対象ファイルのwhitelistを設定していないとカバレッジ取得時にエラーとなるので下記のような設定ファイルを用意する。
phpunit.xml
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit>
<filter>
<whitelist>
<directory>./App</directory>
</whitelist>
</filter>
</phpunit>
テスト設定の追加
テスト実行
エディタでテストケースを開いて右クリックから下記を選択
カバレッジ確認
Author And Source
この問題について(PhpStormからDockerを使ってカバレッジを取得する), 我々は、より多くの情報をここで見つけました https://qiita.com/FrozenVoice/items/4e83f8bb68c302a87689著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .