gpt4 book ai didi

php - 错误:调用未定义的方法Tests\Unit\SomeTest::assertStatus()

转载 作者:行者123 更新时间:2023-12-03 11:22:04 24 4
gpt4 key购买 nike

我写了测试:

$response = $this->get('/something');
$response->assertStatus(200);
它显示此错误:
Error: Call to undefined method Tests\Unit\SomeTest::assertStatus()
我找到了解决问题的方法(下面的代码),但是我想使用第一种方法:
  $response = $this->get('/something');

$this->assertEquals(200, $this->response->status());
为什么第一个代码不起作用?

最佳答案

我通过将use PHPUnit\Framework\TestCase更改为use Tests\TestCase来解决它。

关于php - 错误:调用未定义的方法Tests\Unit\SomeTest::assertStatus(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59074162/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com