Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function testRunCommandOnlyInDevMode() |
||
14 | { |
||
15 | $io = $this->getMockBuilder(ConsoleIO::class) |
||
16 | ->disableOriginalConstructor() |
||
17 | ->getMock(); |
||
18 | $io->method('isDecorated') |
||
19 | ->willReturn(true); |
||
20 | |||
21 | $this->expectOutputString('foo' . "\n"); |
||
22 | ScriptHandler::runCommandOnlyInDevMode('echo "foo"', $io, true); |
||
23 | } |
||
24 | } |
||
25 |