我想讓PHPUnit在Netbeans中工作。我使用3.4.9,但拒絕工作,並建議升級到最新版本。我現在已經升級到3.5.15,當我運行它,我得到以下信息:PHPUnit集成到NetBeans 7
unrecognized option --log-xml
我明白,這不是有效的日誌選項,但我不知道這是被設置或如何更改。我的phpunit.xml文件是:
<phpunit bootstrap="./application/bootstrap.php" colors="true">
<testsuite name="Personal Development">
<directory>./</directory>
</testsuite>
<filter>
<whitelist>
<directory suffix=".php">../application/</directory>
<exclude>
<file>../application/Bootstrap.php</file>
<file>../application/controllers/ErrorController.php</file>
<directory suffix=".phtml">../application/</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="./log/report" charset="UTF-8"
yui="true" highlight="true" lowUpperBound="50" highLowerBound="80"/>
<log type="testdox-html" target="./log/testdox.html" />
</logging>
</phpunit>
如何解決此錯誤?
我假設它在phpunit被調用時通過,檢查執行的命令並查看是否有一些可以影響的配置。 – hakre