mock(SettingService::class, function (MockInterface $settingService) { $settingService->shouldReceive('get') ->andReturn(false); }); $twofaccount = TwoFAccount::factory()->make(); $event = new TwoFAccountDeleted($twofaccount); $this->assertSame($twofaccount, $event->twofaccount); } }