Files
animethemes-server/tests/Unit/Events/CascadesRestoresTest.php
T

12 lines
281 B
PHP

<?php
declare(strict_types=1);
use App\Contracts\Events\CascadesRestoresEvent;
use App\Listeners\CascadesRestores;
use Illuminate\Support\Facades\Event;
test('listening', function (): void {
Event::assertListening(CascadesRestoresEvent::class, CascadesRestores::class);
});