我正在学习 PHPUnit,我想测试需要登录的页面(例如更改密码、添加新文章等)。正常测试是这样的$response = $this->get('/'); $response->assertStatus(200);但是如果页面需要身份验证(用于登录用户),它将无法工作。我怎样才能解决我的问题?
1 回答
暮色呼如
TA贡献1853条经验 获得超9个赞
您可以在使用 Laravel 运行测试时“充当”用户
$user = \App\User::find(1) //replace with creating or finding the user you want
$this->actingAs($user);
- 1 回答
- 0 关注
- 122 浏览
添加回答
举报
0/150
提交
取消