Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | public function testCreateService() |
||
23 | { |
||
24 | $serviceLocator = new ServiceLocatorDummy($this); |
||
25 | |||
26 | $serviceLocator->set('DmCommon\Exception\Log', $serviceLocator->get('Zend\Log\Logger')); |
||
27 | |||
28 | $result = $this->sut->createService($serviceLocator); |
||
29 | |||
30 | $this->assertInstanceOf('DmCommon\Service\ErrorHandler', $result); |
||
31 | } |
||
32 | } |
||
33 |