PHP 7.4.13、PhpStorm 2020.1.4、PHPUnit 9.5.8 を使用しています。
PCOV で PHPUnit コード カバレッジ ツールを使用しようとしていますが、うまくいきません。
私はpcovをインストールしました:
pecl install pcov
php.ini ファイルで拡張機能を有効にしました。
extension="pcov.so"
私の phpunit.xml は次のようになります。
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Integration">
<directory suffix="Test.php">./tests/Integration</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app</directory>
</whitelist>
</filter>
<php>
<server name="APP_ENV" value="testing"/>
<server name="BCRYPT_ROUNDS" value="4"/>
<server name="CACHE_DRIVER" value="array"/>
<server name="MAIL_DRIVER" value="array"/>
<server name="QUEUE_CONNECTION" value="sync"/>
<server name="SESSION_DRIVER" value="array"/>
<server name="DB_DATABASE" value="testing"/>
</php>
</phpunit>
実行しようとするphpunit --coverage-html coverage
と、次のようになります。
問題は、カバレッジ ドライバーが見つからないことだと思います。しかし、問題はどこから来て、どうすれば修正できますか?
3時間前からこの問題を解決しようとしていますが、方法が見つかりません。
誰かが助けてくれることを願っています:)