forked from phly/phly-event-dispatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEventDispatcherTest.php
39 lines (32 loc) · 1.09 KB
/
EventDispatcherTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
* @see https://github.com/phly/phly-event-dispatcher for the canonical source repository
* @copyright Copyright (c) 2018-2019 Matthew Weier O'Phinney (https://mwop.net)
* @license https://github.com/phly/phly-event-dispatcher/blob/master/LICENSE.md New BSD License
*/
declare(strict_types=1);
namespace PhlyTest\EventDispatcher;
use Phly\EventDispatcher\EventDispatcher;
use PHPUnit\Framework\TestCase;
use Prophecy\PhpUnit\ProphecyTrait;
use Prophecy\Prophecy\ObjectProphecy;
use Psr\EventDispatcher\EventDispatcherInterface;
use Psr\EventDispatcher\ListenerProviderInterface;
class EventDispatcherTest extends TestCase
{
use ProphecyTrait;
use CommonDispatcherTests;
public function setUp(): void
{
$this->provider = $this->prophesize(ListenerProviderInterface::class);
$this->dispatcher = new EventDispatcher($this->provider->reveal());
}
public function getDispatcher() : EventDispatcherInterface
{
return $this->dispatcher;
}
public function getListenerProvider() : ObjectProphecy
{
return $this->provider;
}
}