我为CompanyController创建了测试,
public function testCompanyIndex()
{
$user = factory(User::class)->create();
$response = $this->actingAs($user, 'web')->get('company/index');
$response->assertStatus('200');
}
但是我有一个错误:
1)测试\功能\公司测试:: testCompanyIndex 预期状态码为200,但已收到200。 无法断言false为真。
在CompanyController中,我有中间件auth:web
。CompanyController@index
返回所有公司。