为代码覆盖率包含或排除文件
最后更新于:2022-04-01 03:49:47
# 为代码覆盖率包含或排除文件
`<filter>` 元素及其子元素用于为代码覆盖率报告配置黑名单与白名单。
~~~
<filter>
<blacklist>
<directory suffix=".php">/path/to/files</directory>
<file>/path/to/file</file>
<exclude>
<directory suffix=".php">/path/to/files</directory>
<file>/path/to/file</file>
</exclude>
</blacklist>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">/path/to/files</directory>
<file>/path/to/file</file>
<exclude>
<directory suffix=".php">/path/to/files</directory>
<file>/path/to/file</file>
</exclude>
</whitelist>
</filter>
~~~