我写了测试:$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());为什么第一个代码不起作用?
- 3 回答
- 0 关注
- 103 浏览
添加回答
举报
0/150
提交
取消