Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
41 | public function testGetFullCommandReturnsNotEscapedCommandAndArgsIfConfigured() |
||
42 | { |
||
43 | $this->sut->setConfig(ConfigurationFactory::createFromArray(['escape_shell_cmd' => false, 'escape_shell_args' => false])); |
||
44 | |||
45 | $this->assertEquals("echo ? '123", $this->sut->getFullCommand()); |
||
46 | } |
||
47 | |||
48 | } |