mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 16:53:26 +01:00
25 lines
424 B
PHP
25 lines
424 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\Events;
|
|
|
|
use App\Models\Group;
|
|
use App\Events\GroupDeleting;
|
|
use Tests\TestCase;
|
|
|
|
|
|
/**
|
|
* @covers \App\Events\GroupDeleting
|
|
*/
|
|
class GroupDeletingTest extends TestCase
|
|
{
|
|
/**
|
|
* @test
|
|
*/
|
|
public function test_event_constructor()
|
|
{
|
|
$group = Group::factory()->make();
|
|
$event = new GroupDeleting($group);
|
|
|
|
$this->assertSame($group, $event->group);
|
|
}
|
|
} |