Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
25 | protected function setUp() |
||
26 | { |
||
27 | parent::setUp(); |
||
28 | |||
29 | $this->serviceLocator = new ServiceManager(); |
||
30 | |||
31 | $this->command = $this->getMockBuilder(ValidateSchemaCommand::class) |
||
32 | ->disableOriginalConstructor() |
||
33 | ->getMock(); |
||
34 | |||
35 | $this->request = new Request(); |
||
36 | |||
37 | $this->sut = new CheckSchemaFactory(); |
||
38 | } |
||
39 | |||
50 |