【发布时间】:2021-08-12 17:12:44
【问题描述】:
我试图伪造事件
public function should_assign_order()
{
Event::fake([OrderWasAssigned::class]);
.
.
.
}
我收到了这个错误
Call to undefined method Illuminate\Support\Testing\Fakes\EventFake::getListeners()
编辑:
我尝试将望远镜禁用为this issue
由putenv('TELESCOPE_ENABLED=false');
同样的问题
我只需要伪造这个事件
我在 laravel 6
PHPUnit 9.5.4.
【问题讨论】: