Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
19 | final class ImmutableEventDispatcherTest extends TestCase |
||
20 | { |
||
21 | /** |
||
22 | * @var ListenerProviderInterface|MockObject |
||
23 | */ |
||
24 | private $listenerProvider; |
||
25 | |||
26 | /** |
||
27 | * Prepare the test case dependencies. |
||
28 | */ |
||
29 | public function setUp(): void |
||
30 | { |
||
31 | $this->listenerProvider = $this->getMockForAbstractClass(ListenerProviderInterface::class); |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * Assert that the event dispatcher is an instance of EventDispatcherInterface. |
||
36 | */ |
||
37 | public function testImplementsEventDispatcherInterface(): void |
||
42 | } |
||
43 | } |
||
44 |