本文介绍了PhpUnit在Symfony 2项目中退出/退出代码255的PhpStorm中失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我无法使phpunit在PhpStorm中的Symfony项目中工作-phpunit -c app在OSX终端中可以正常工作.

I'm having trouble getting phpunit working inside of a Symfony project in PhpStorm - phpunit -c app works fine in the OSX terminal.

这是错误:

Unable to attach test reporter to test framework of test framework quit unexpectedly
/Applications/MAMP/bin/php/php5.4.4/bin/php/private/var/folders/4l/hw8g4qlj6nnc37lfkc6hcj7w0000gn/T/ide-phpunit.php --bootstrap
/Users/greg/Repos/MyApp/app/bootstrap.php.cache --configuration    
/Users/greg/Repos/MyApp/app/phpunit.xml.dist
MyApp\MyBundle\Tests\Controller\MyControllerTest 
/Users/greg/Repos/MyApp/src/HvH/MyBundle/Tests/Controller/MyControllerTest.php

Testing started at 11:45 AM ...

Process finished with exit code 255

这是PHP日志中的错误:

Here is the error from the PHP log:

Fatal error: Uncaught exception 'InvalidArgumentException' with message 'The "app/" directory does not exist.' in /Users/greg/Repos/MyApp/vendor/symfony/symfony/src/Symfony/Component/Finder/Finder.php:650

推荐答案

我遇到了同样的问题,并在文档中找到以下解决方案: http://symfony.com/doc/current/book/testing.html#您的第一个功能测试

I ran into the same issue and found the following solution in the documentation:http://symfony.com/doc/current/book/testing.html#your-first-functional-test

<phpunit>
    <!-- ... -->
    <php>
        <server name="KERNEL_DIR" value="/path/to/your/app/" />
    </php>
    <!-- ... -->
</phpunit>

因此,请检查您的phpunit.xml.dist配置文件,并尝试将绝对路径添加到您的应用程序目录.

So check your phpunit.xml.dist configuration file and try to add the absolute path to your app-directory.

希望有帮助.

这篇关于PhpUnit在Symfony 2项目中退出/退出代码255的PhpStorm中失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-26 19:59