| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | public function createsProperService() |
||
| 27 | { |
||
| 28 | $instance = $this->factory->__invoke(new ServiceManager(['services' => [ |
||
| 29 | QuestionHelper::class => $this->prophesize(QuestionHelper::class)->reveal(), |
||
| 30 | ]]), ApplicationConfigCustomizerPlugin::class); |
||
| 31 | $this->assertInstanceOf(ApplicationConfigCustomizerPlugin::class, $instance); |
||
| 32 | |||
| 33 | $instance = $this->factory->__invoke(new ServiceManager(['services' => [ |
||
| 34 | QuestionHelper::class => $this->prophesize(QuestionHelper::class)->reveal(), |
||
| 35 | ]]), LanguageConfigCustomizerPlugin::class); |
||
| 36 | $this->assertInstanceOf(LanguageConfigCustomizerPlugin::class, $instance); |
||
| 37 | } |
||
| 38 | } |
||
| 39 |