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