mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-27 10:45:44 +01:00
29 lines
616 B
PHP
29 lines
616 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\Events;
|
|
|
|
use App\Models\TwoFAccount;
|
|
use App\Events\TwoFAccountDeleted;
|
|
use Tests\TestCase;
|
|
|
|
|
|
/**
|
|
* @covers \App\Events\TwoFAccountDeleted
|
|
*/
|
|
class TwoFAccountDeletedTest extends TestCase
|
|
{
|
|
/**
|
|
* @test
|
|
*/
|
|
public function test_event_constructor()
|
|
{
|
|
\Facades\App\Services\SettingService::shouldReceive('get')
|
|
->with('useEncryption')
|
|
->andReturn(false);
|
|
|
|
$twofaccount = TwoFAccount::factory()->make();
|
|
$event = new TwoFAccountDeleted($twofaccount);
|
|
|
|
$this->assertSame($twofaccount, $event->twofaccount);
|
|
}
|
|
} |