没有配置白名单,不会生成代码覆盖/默认phpunit.xml

时间:2018-06-11 11:26:41

标签: php phpunit tdd xdebug

必须尝试至少30个版本的phpunit.xml文件,但它们都会出现同样的错误:

 No whitelist configured, no code coverage will be generated / default phpunit.xml

请有人解释我如何进一步调试以找出错误,或者向我展示一个简单的phpunit.xml文件。

这是我目前的尝试:

<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true">
    <testsuites>
        <testsuite name="My Application Test Suite">
            <directory>./tests/</directory>
        </testsuite>
    </testsuites>
    <whitelist processUncoveredFilesFromWhitelist="true">
        <file>./WordWrap.php</file>
    </whitelist>
</phpunit>

感谢任何帮助,谢谢。

0 个答案:

没有答案