我写了测试:
$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());
为什么第一个代码不起作用?
慕盖茨4494581
潇湘沐
喵喵时光机