Laravel Testing身份验证失败

时间:2014-07-21 09:40:33

标签: php unit-testing laravel

我已经在setUp函数中启用了过滤器。我的测试功能是这样的:

public function testShowImport() {
    $this->be(User::first());

    $this->call('GET', 'import');
    $this->assertRedirectedToAction('MemberController@getImportIndex');
    //$this->assertRedirectedTo('import'); ---> the same error message
}

然而,当我运行测试时,我收到此错误消息:

Failed asserting that Illuminate\Http\Response Object (...) is an instance of class "Illuminate\Http\RedirectResponse"

我搜索过很多帖子,他们说我必须启用过滤器。但我已经从一开始就启用了它。

我被困在这几个小时。

感谢您阅读

0 个答案:

没有答案