| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 15 | public function testRegister() |
||
| 16 | { |
||
| 17 | $provider = new FormServiceProvider(); |
||
| 18 | $provider->initContainer(); |
||
| 19 | $provider->register(); |
||
| 20 | |||
| 21 | $factory = $provider->getContainer()->get(FormServiceProvider::FORM_FACTORY); |
||
| 22 | self::assertInstanceOf(FormFactoryInterface::class, $factory); |
||
| 23 | } |
||
| 25 |