HummingBirdAnimeClient/tests/Ion/EventTest.php

31 lines
704 B
PHP
Raw Permalink Normal View History

<?php declare(strict_types=1);
/**
* Hummingbird Anime List Client
*
* An API client for Kitsu to manage anime and manga watch lists
*
2023-07-13 11:08:05 -04:00
* PHP version 8.1
*
2023-07-13 11:08:05 -04:00
* @copyright 2015 - 2023 Timothy J. Warren <tim@timshome.page>
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-12-10 17:06:50 -05:00
* @version 5.2
2023-07-13 11:08:05 -04:00
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
2020-12-10 15:59:37 -05:00
namespace Aviat\Ion\Tests;
2020-12-10 15:59:37 -05:00
use Aviat\Ion\Event;
use PHPUnit\Framework\TestCase;
2022-03-04 12:19:47 -05:00
/**
* @internal
*/
final class EventTest extends TestCase
{
2020-12-10 15:59:37 -05:00
public function testEmit(): void
{
Event::on('test-event', fn ($fired) => $this->assertTrue($fired));
2022-03-04 12:19:47 -05:00
Event::emit('test-event', [TRUE]);
2020-12-10 15:59:37 -05:00
}
2022-03-04 12:19:47 -05:00
}