我正在学习单元测试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)
有没有遇到过这个?什么是可能的问题?