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