mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 19:55:05 +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\UpdatePlaylistTracksEvent;
|
|
use App\Listeners\List\UpdatePlaylistTracks;
|
|
use Illuminate\Support\Facades\Event;
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* Class UpdatePlaylistTracksTest.
|
|
*/
|
|
class UpdatePlaylistTracksTest extends TestCase
|
|
{
|
|
/**
|
|
* UpdatePlaylistTracks shall listen to UpdatePlaylistTracksEvent.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testListening(): void
|
|
{
|
|
Event::assertListening(UpdatePlaylistTracksEvent::class, UpdatePlaylistTracks::class);
|
|
}
|
|
}
|