前端之家收集整理的这篇文章主要介绍了
cakephp – 如何从phpunit覆盖率报告中排除目录,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在写信-
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite name="My Test Suite">
<directory suffix=".PHP">Test/Case/Model</directory>
<exclude>Test/Case/Model/Behavior</exclude>
</testsuite>
</testsuites>
但它不排除覆盖率报告中的行为.如何从覆盖率报告中排除此目录或文件?
<?xml version="1.0" encoding="utf-8"?>
<PHPunit>
<filter>
<whitelist>
<directory suffix=".PHP">../</directory>
<exclude>
<file>../ext_emconf.PHP</file>
<directory suffix=".PHP">../tests</directory>
</exclude>
</whitelist>
</filter>
</PHPunit>
原文链接:https://www.f2er.com/php/130741.html