Laravel phpunit tests在调用堆栈中找不到TestCase对象

tjrkku2a  于 2023-06-07  发布在  PHP
关注(0)|答案(1)|浏览(159)

其中运行所有测试php artisan test一切都按预期工作,所有测试都运行

现在,当我运行single test php artisan test --filter test_get_profile时,我得到了这个有线错误

An error occurred inside PHPUnit.

Message:  Cannot find TestCase object on call stack
Location: D:\laragon\www\project\vendor\phpunit\phpunit\src\TextUI\TestRunner.php:68

但是其他一些测试仍然可以工作,例如,test_login和test_register可以工作,但是当我创建一个新的测试时,有时它可以工作,有时我会得到这个有线错误
PS:我添加的文件路径示例php artisan test tests/Feature/AccountTest.php --filter test_get_profile我没有得到任何错误,但我不知道什么总是包括文件路径
请注意所有测试均为空

public function test_get_profile(): void
    {
        $response = $this->get('/');

        $response->assertStatus(200);
    }

有人知道这个问题吗?我用的是laravel 10和phpunit 10
phpunit.xml:

<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
         bootstrap="vendor/autoload.php"
         colors="true"
>
    <testsuites>
        <testsuite name="Unit">
            <directory suffix="Test.php">./tests/Unit</directory>
        </testsuite>
        <testsuite name="Feature">
            <directory suffix="Test.php">./tests/Feature</directory>
        </testsuite>
    </testsuites>
    <source>
        <include>
            <directory suffix=".php">./app</directory>
        </include>
    </source>
    <php>
        <env name="APP_ENV" value="testing"/>
        <env name="BCRYPT_ROUNDS" value="4"/>
        <env name="CACHE_DRIVER" value="array"/>
        <!-- <env name="DB_CONNECTION" value="sqlite"/> -->
        <!-- <env name="DB_DATABASE" value=":memory:"/> -->
        <env name="MAIL_MAILER" value="array"/>
        <env name="QUEUE_CONNECTION" value="sync"/>
        <env name="SESSION_DRIVER" value="array"/>
        <env name="TELESCOPE_ENABLED" value="false"/>
    </php>
</phpunit>

UserTest.php

namespace Tests\Feature;

use Tests\TestCase;

class UserTest extends TestCase
{
    public function test_login(): void
    {
        $response = $this->get('/');

        $response->assertStatus(200);
    }

    public function test_register(): void
    {
        $response = $this->get('/');

        $response->assertStatus(200);
    }
}

AccountTest.php

namespace Tests\Feature;

use Tests\TestCase;

class AccountTest extends TestCase
{
    /**
     * A basic feature test example.
     */
    public function test_get_profile(): void
    {
        $response = $this->get('/');

        $response->assertStatus(200);
    }
}
xzlaal3s

xzlaal3s1#

这是PHPUnit中的一个bug。
https://github.com/sebastianbergmann/phpunit/issues/5403
这是解决办法
https://github.com/sebastianbergmann/phpunit/commit/16166431bce84bb100d8e7fe867d612bdfe61776#diff-548ab8441af390a03ab9bf5e83a441aaa67c43de14b247a1426c2983b434bd89
运行编写器更新以获取最新版本。

相关问题