symfony PHPSorm-进程已完成,退出代码为255

p5cysglq  于 2022-11-25  发布在  PHP
关注(0)|答案(3)|浏览(192)

我尝试在Symfony 3框架中进行单元测试。

这就是我所面临的错误

/Applications/MAMP/bin/php/php7.0.0/bin/php /private/var/folders/w9/cmwlplqx53x3slxkm4c1chx00000gn/T/ide-phpunit.php --bootstrap /Users/muhammetergenc/code/kampweb/phpunit.xml.dist --configuration /Users/muhammetergenc/code/kampweb/phpunit.xml.dist Tests\AppBundle\Controller\PersonTest /Users/muhammetergenc/code/kampweb/tests/AppBundle/Controller/PersonTest.php
Testing started at 3:04 PM ...
<?xml version="1.0" encoding="UTF-8"?>

<!-- http://phpunit.de/manual/4.1/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
         backupGlobals="false"
         colors="true"
         bootstrap="app/autoload.php">

    <!-- <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
             backupGlobals="false"
             colors="true"
             bootstrap="web/app_test.php">-->
    <php>
        <ini name="error_reporting" value="-1" />
        <server name="KERNEL_DIR" value="app/" />
    </php>

    <testsuites>
        <testsuite name="Project Test Suite">
            <directory>tests</directory>
        </testsuite>
    </testsuites>

    <filter>
        <whitelist>
            <directory>src</directory>
            <exclude>
                <directory>src/*Bundle/Resources</directory>
                <directory>src/*/*Bundle/Resources</directory>
                <directory>src/*/Bundle/*Bundle/Resources</directory>
            </exclude>
        </whitelist>
    </filter>
</phpunit>

Process finished with exit code 255

我的另一个桌面上也有同样的配置,它工作得很好。

o2gm4chl

o2gm4chl1#

今天我遇到了同样的错误- 255。在我的例子中,我没有在setUp方法中声明CONSTANTS。
我想你也有类似的东西。试着用xdebug找到它-它帮了我的忙。

k4ymrczo

k4ymrczo2#

在我的情况下,这是一个内存问题。
setUp()方法中,我初始化了多个类属性。
对我来说,修复是定义(覆盖)tearDown()方法,以在每次测试后取消设置属性。

protected function tearDown(): void
{
    // clean memory
    unset($this->foo);
    unset($this->bar);

    parent::tearDown();
}
mxg2im7a

mxg2im7a3#

在我的情况下,这是一个PHP错误设置问题.
我把display_startup_errors设置为“1”,phpunit报告了错误。
具体来说,在我的引导脚本中,我写了下面的内容。

ini_set('display_startup_errors', 1);

和phpunit报告我的require_once运行时错误。

相关问题