| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | public function testCreateFactory() |
||
| 11 | { |
||
| 12 | $factoryFactory = new ConnectionFactoryFactory(); |
||
| 13 | $factoryFactory->setFactoryMap([ |
||
| 14 | 'stub' => ConnectionFactoryStub::class |
||
| 15 | ]); |
||
| 16 | |||
| 17 | static::assertInstanceOf(ConnectionFactoryStub::class, $factoryFactory->createFactory('stub')); |
||
| 18 | } |
||
| 19 | |||
| 42 |