mock the facade

mock the facade:

Auth::shouldReceive('user')->andReturn($user = m::mock('StdClass'));

$user->shouldReceive('posts')->once()->andReturn(array('posts'));
原文地址:https://www.cnblogs.com/fenle/p/6252614.html