2FAuth/tests/Unit/Events/GroupDeletingTest.php
2022-03-31 11:24:01 +02:00

25 lines
422 B
PHP

<?php
namespace Tests\Unit\Events;
use App\Group;
use App\Events\GroupDeleting;
use Tests\TestCase;
/**
* @covers \App\Events\GroupDeleting
*/
class GroupDeletingTest extends TestCase
{
/**
* @test
*/
public function test_event_constructor()
{
$group = factory(Group::class)->make();
$event = new GroupDeleting($group);
$this->assertSame($group, $event->group);
}
}