我创建了一个 phpunit 测试文件,当我尝试通过 phpstorm 运行它时,我收到以下消息:
Unable to attach test reporter to test framework or test framework quit unexpectedly
似乎执行了以下命令:
/usr/local/bin/php /private/var/folders/4b/qrnw7nbd6llgmhrss5rf1_880000gt/T/ide-phpunit.php --configuration /Users/Shared/sites/pac/app/app/phpunit.xml.dist BackendControllerTest /Users/Shared/sites/pac/app/modules/Pac/Backend/Tests/Controller/BackendControllerTest.php
Testing started at 23:22 ...
Process finished with exit code 0
当我通过命令行执行此操作时,我得到更多的输出
PHPUnit 3.6.11 by Sebastian Bergmann.
...etc...
FAILURES!
Tests: 2, Assertions: 2, Failures: 1.
似乎 phpunit 没有在 phpstorm 中执行?不应该有某种错误消息而不是用退出代码0完成吗?phpstorms 配置中 php 和 phpunit(相同)的路径应该没问题(都通过 homebrew 安装在 /usr/local/bin 中,路径添加到 phpstorm)
osx 10.7.4 php 5.3.14 PHPUnit 3.6.11
谢谢你帮助我!
马蒂亚斯