4

我创建了一个 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

谢谢你帮助我!
马蒂亚斯

4

3 回答 3

4

在终端和普通应用程序中可用的 Mac OS X 环境变量可能不同,请查看相关问题以了解如何使它们相似的解决方案。

请注意,此解决方案不适用于 Mountain Lion (10.8)。

于 2012-08-05T12:04:14.577 回答
0

你在你的 php.ini 中编辑 include_path 吗?

我有类似的情况。在我添加梨的包含路径后,它可以工作。

看这个。

于 2013-03-07T03:04:06.560 回答
0

在 MacOSX 上,我一直在为一个 simialair 问题苦苦挣扎。

在我的案例中,原因是一个 PHP 升级脚本,它弄乱了一些权限。

我做了什么:

  • 确保我有权在 pear bin_dir 和 php_dir 中使用我自己的帐户阅读和执行
  • 确保 php_dir 在 include_path 中

要查找这些目录,您可以发出

# pear config-show

(寻找 bin_dir 和 php_dir)

这意味着我会执行以下命令:

# (sudo) chmod -R 755 <bin_dir>
# (sudo) chmod -R 755 <php_dir>

更多编码 - 更少的 IDE 配置!

于 2014-04-05T21:16:27.977 回答