我一直在尝试在PhpStorm 8.0.1中设置PHPUnit而没有运气。我下载了phpunit.phar并在PhpStorm的设置中设置了phar的路径以及phpunit配置文件,但是当我尝试运行测试时,它失败了,输出如下:
/usr/bin/php /tmp/ide-phpunit.php --no-configuration MyTest /project/MyTest.php
Testing started at 9:31 PM ...
Process finished with exit code 1
Cannot find PHPUnit in include path (.:/usr/share/pear)
我不是专家,但它似乎并没有使用phpunit.phar,因为我运行时测试运行良好
$ phpunit
在终端。
答案 0 :(得分:0)
我解决了类似的问题(没有显示PHPUnit_Fremwork_TestCase类的提示):
下载所需的php版本。
然后在phpstorm中 - > 文件/设置../语言& Frameworks / PHP 选项卡单击“Interpreter”旁边的“...”按钮,并设置下载PHP的路径。
接下来,添加Include路径,该路径将指向您拥有phpunit.phar文件的位置
然后在phpstorm中 - > 文件/设置../语言& Frameworks / PHP / PHPUnit 选项卡选择单选按钮“从包含路径加载”,并选择设置引导程序和配置文件。
现在你不应该得到:
在包含路径(。:/ usr / share / pear)
中找不到PHPUnit