PHPUnit代码覆盖率

ste*_*pop 13 php phpunit zend-framework code-coverage

我正在学习单元测试Zend Framework应用程序的绳索.到目前为止,我已经开始PHPUnit使用Zend Framework并开始编写一些简单的测试用例.

我的问题是,我想知道为什么Code Coverage不能在我的日志标记中设置为什么不起作用phpunit.xml.

我没有收到任何错误但没有生成覆盖率报告.

但是当我跑步时它会起作用 phpunit --coverage <dir>

我的phpunit的日志记录部分如下:

<phpunit bootstrap="./application/bootstrap.php" colors="true">
        <testsuite name="CI Test Suite">
            <directory>./</directory>
        </testsuite>
        <testsuite name="Library Test Suite">
            <directory>./library</directory>
        </testsuite>

        <filter>
            <whitelist>
                <directory suffix=".php">../application/</directory>
                <exclude>
                    <directory suffix=".phtml">../application</directory>
                    <file>../application/Bootstrap.php</file>
                    <file>../application/controllers/ErrorController.php</file>
                </exclude>
            </whitelist>
           <logging>
               <log type="coverage-html" target="./log/report" charset="UTF-8" yui="true"
   highlight="true" lowUpperBound="50" highLowerBound="80" />
               <log type="testdox" target="./log/testdox.html" />    
           </logging>
        </filter>
    </phpunit>
Run Code Online (Sandbox Code Playgroud)

有没有遇到过这个?什么是可能的问题?

vas*_*ite 26

这是我的一个项目的phpunit.xml,这很好用.正如您所看到的,日志记录部分位于过滤器部分之外,因此这可能是Mark Ba​​ker评论的问题.我选择这个,因为它来自一个小项目,非常简单.

<phpunit bootstrap="./bootstrap.php" colors="false">
    <testsuite name="HSSTests">
        <directory>./</directory>
    </testsuite>

    <filter>
        <whitelist>
            <directory suffix=".php">d:/wamp/app_hss/</directory>
            <exclude>
                <directory suffix=".phtml">d:/wamp/app_hss/</directory>
                <directory suffix=".php">d:/wamp/app_hss/tests/</directory>
            </exclude>
        </whitelist>
    </filter>

    <logging>
        <log type="coverage-html" target="./log/codeCoverage" charset="UTF-8"
            yui="true" highlight="true"
            lowUpperBound="50" highLowerBound="80"/>
        <log type="testdox-html" target="./log/testdox.html" />
    </logging>
</phpunit>
Run Code Online (Sandbox Code Playgroud)

您可能需要的所有信息都在PHPunit手册中.