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

22 lines
502 B
PHP

<?php
declare(strict_types=1);
namespace Tests\Unit\Events;
use App\Contracts\Events\UpdateRelatedIndicesEvent;
use App\Listeners\UpdateRelatedIndices;
use Illuminate\Support\Facades\Event;
use Tests\TestCase;
class UpdateRelatedIndicesTest extends TestCase
{
/**
* UpdateRelatedIndices shall listen to UpdateRelatedIndicesEvent.
*/
public function testListening(): void
{
Event::assertListening(UpdateRelatedIndicesEvent::class, UpdateRelatedIndices::class);
}
}