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