| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | final class EventDispatcherFactoryTest extends TestCase |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var AddableListenerProviderInterface|MockObject |
||
| 21 | */ |
||
| 22 | private $listenerProvider; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Prepare the test case dependencies |
||
| 26 | */ |
||
| 27 | public function setUp(): void |
||
| 28 | { |
||
| 29 | $this->listenerProvider = $this->getMockForAbstractClass(AddableListenerProviderInterface::class); |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Assert that the event dispatcher factory implements FactoryInterface. |
||
| 34 | * |
||
| 35 | * @covers \Arp\EventDispatcher\Factory\EventDispatcherFactory |
||
| 36 | */ |
||
| 37 | public function testImplementsFactoryInterface(): void |
||
| 42 | } |
||
| 43 | } |
||
| 44 |