2FAuth/tests/Unit/Events/TwoFAccountDeletedTest.php

29 lines
616 B
PHP
Raw Normal View History

2021-11-30 17:39:33 +01:00
<?php
namespace Tests\Unit\Events;
2021-12-02 13:15:53 +01:00
use App\Models\TwoFAccount;
2021-11-30 17:39:33 +01:00
use App\Events\TwoFAccountDeleted;
use Tests\TestCase;
/**
* @covers \App\Events\TwoFAccountDeleted
*/
class TwoFAccountDeletedTest extends TestCase
{
/**
* @test
*/
public function test_event_constructor()
{
2021-12-01 13:47:20 +01:00
\Facades\App\Services\SettingService::shouldReceive('get')
2021-11-30 17:39:33 +01:00
->with('useEncryption')
->andReturn(false);
2021-12-02 13:15:53 +01:00
$twofaccount = TwoFAccount::factory()->make();
2021-11-30 17:39:33 +01:00
$event = new TwoFAccountDeleted($twofaccount);
$this->assertSame($twofaccount, $event->twofaccount);
}
}