PHPUnit 警告 - 未配置过滤器,将不处理代码覆盖率
PHPUnit warning - No filter is configured, code coverage will not be processed
我正在尝试使用 PHPUnit 生成覆盖 html 文件。我收到警告:'No filter is configured, code coverage will not be processed' 并且未生成覆盖文件。
这是phpunit.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<testsuites>
<testsuite name="Application Test Suite">
<directory>./phpUnitTutorial</directory>
</testsuite>
</testsuites>
</phpunit>
有人可以帮忙吗?
我建议您使用配置生成器 (phpunit --generate-configuration
)。它会问你几个问题,然后为你生成正确的配置。
我在我的 PHPUnit 9.5 配置文件的 <phpunit>
标签之间添加了以下内容:
<coverage>
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
我正在尝试使用 PHPUnit 生成覆盖 html 文件。我收到警告:'No filter is configured, code coverage will not be processed' 并且未生成覆盖文件。
这是phpunit.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<testsuites>
<testsuite name="Application Test Suite">
<directory>./phpUnitTutorial</directory>
</testsuite>
</testsuites>
</phpunit>
有人可以帮忙吗?
我建议您使用配置生成器 (phpunit --generate-configuration
)。它会问你几个问题,然后为你生成正确的配置。
我在我的 PHPUnit 9.5 配置文件的 <phpunit>
标签之间添加了以下内容:
<coverage>
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>