| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function testFirephpFactoryCanBeInitalized() |
||
| 28 | { |
||
| 29 | $this->serviceManager->setService('firephptest', $this->createMock(FirephpFactory::class)); |
||
| 30 | |||
| 31 | $factory = new FirephpFactory(); |
||
| 32 | $result = $factory->createService($this->serviceManager); |
||
| 33 | $this->assertInstanceOf(FirephpWrapper::class, $result); |
||
| 34 | } |
||
| 35 | } |
||
| 36 |