我正在使用netbeans运行zendframework的phpunit测试但是没有生成报告。该文件夹已创建,但没有报告。
我的直接结构:
-application
--models
--modules
-library
-log
--report
-bootstrap.php
-phpunit.xml
phpunit.xml
<phpunit bootstrap="./bootstrap.php">
<testsuite name="Application Test Suite">
<directory>./application</directory>
</testsuite>
<testsuite name="Library Test Suite">
<directory>./library</directory>
</testsuite>
<filter>
<!-- If Zend Framework is inside your project's library, uncomment this filter -->
<!--
<whitelist>
<directory suffix=".php">../../library/Zend</directory>
</whitelist>
-->
</filter>
<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>
测试运行正常但我应该如何配置我的phpunit.xml来生成报告?
我的PHPUnit版本是3.5.15
答案 0 :(得分:2)
我也有这个问题,如果我没记错的话,它与xdebug(或类似的)没有运行有关 - 但在我的情况下,命令行工具引发了一些错误。
答案 1 :(得分:0)
我想通了,我试过从终端跑。它抛出了一个内存异常,我增加了php内存限制,现在工作正常。