Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
40 | public function testCreateService() |
||
41 | { |
||
42 | $this->serviceLocator->setService('doctrine.orm_cmd.validate_schema', $this->command); |
||
43 | $this->serviceLocator->setService('Request', $this->request); |
||
44 | |||
45 | $actual = $this->sut->createService($this->serviceLocator); |
||
46 | |||
47 | self::assertInstanceOf(CheckCommand::class, $actual); |
||
48 | } |
||
49 | } |
||
50 |