2FAuth/tests/Unit/Events/GroupDeletingTest.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);
}
}