Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | final class ImmutableEventDispatcherTest extends TestCase |
||
18 | { |
||
19 | private ListenerProviderInterface&MockObject $listenerProvider; |
||
20 | |||
21 | public function setUp(): void |
||
22 | { |
||
23 | $this->listenerProvider = $this->getMockForAbstractClass(ListenerProviderInterface::class); |
||
24 | } |
||
25 | |||
26 | public function testImplementsEventDispatcherInterface(): void |
||
31 | } |
||
32 | |||
33 | public function testDispatchOfInternalEventDispatcher(): void |
||
44 |