| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | protected function setUp(): void |
||
| 15 | { |
||
| 16 | $this->application = $this->getMockBuilder('Symfony\\Component\\Console\\Application') |
||
| 17 | ->disableOriginalConstructor() |
||
| 18 | ->getMock(); |
||
| 19 | $this->definition = $this->getMockBuilder('Symfony\\Component\\Console\\Input\\InputDefinition') |
||
| 20 | ->disableOriginalConstructor() |
||
| 21 | ->getMock(); |
||
| 22 | $this->helperSet = $this->getMockBuilder('Symfony\\Component\\Console\\Helper\\HelperSet')->getMock(); |
||
| 23 | |||
| 24 | $this->application->expects($this->any()) |
||
| 25 | ->method('getDefinition') |
||
| 26 | ->will($this->returnValue($this->definition)); |
||
| 27 | $this->definition->expects($this->any()) |
||
| 28 | ->method('getArguments') |
||
| 29 | ->will($this->returnValue(array())); |
||
| 30 | } |
||
| 32 |