0

我为 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:webCompanyController@index返回所有公司。

4

1 回答 1

3

只需删除这样的引号$response->assertStatus(200); 以获取更多详细信息,请单击此处

于 2019-03-26T12:51:07.567 回答