我使用 PHP 7.4.13、PhpStorm 2020.1.4、PHPUnit 9.5.8。
我尝试将 PHPUnit 代码覆盖工具与 PCOV 一起使用,但无法正常工作。
我安装了 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小时以来,我一直在尝试解决此问题,但我找不到方法。
我希望有人能帮帮忙 :)