mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-26 16:54:30 +02:00
27 lines
577 B
PHP
27 lines
577 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Unit\Events;
|
|
|
|
use App\Contracts\Events\FilamentNotificationEvent;
|
|
use App\Listeners\NotifiesFilamentUsers;
|
|
use Illuminate\Support\Facades\Event;
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* Class NotifiesFilamentUsersTest.
|
|
*/
|
|
class NotifiesFilamentUsersTest extends TestCase
|
|
{
|
|
/**
|
|
* NotifiesFilamentUsers shall listen to FilamentNotificationEvent.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testListening(): void
|
|
{
|
|
Event::assertListening(FilamentNotificationEvent::class, NotifiesFilamentUsers::class);
|
|
}
|
|
}
|