用laravel做单元测试的时候报错如下:
badmethodcallexception: method mockery_0_illuminate_auth_authmanager::user() does not exist on this mock object
报错的地方部分代码如下:
function writelog($record = ''){$data = array('uid' => auth::user()->id,//调用这一行的时候报错'ip' => $this->request->ip(),'created_at' => carbon::now());operatelog::create($data);}
请问这个应该如何处理?
回复内容: 用laravel做单元测试的时候报错如下:
badmethodcallexception: method mockery_0_illuminate_auth_authmanager::user() does not exist on this mock object
报错的地方部分代码如下:
function writelog($record = ''){$data = array('uid' => auth::user()->id,//调用这一行的时候报错'ip' => $this->request->ip(),'created_at' => carbon::now());operatelog::create($data);}
请问这个应该如何处理?