public function ProcessBuilderTest::testShouldNotThrowALogicExceptionIfNoPrefix in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/process/Tests/ProcessBuilderTest.php \Symfony\Component\Process\Tests\ProcessBuilderTest::testShouldNotThrowALogicExceptionIfNoPrefix()
File
- vendor/
symfony/ process/ Tests/ ProcessBuilderTest.php, line 185
Class
Namespace
Symfony\Component\Process\TestsCode
public function testShouldNotThrowALogicExceptionIfNoPrefix() {
$process = ProcessBuilder::create(array(
'/usr/bin/php',
))
->getProcess();
if ('\\' === DIRECTORY_SEPARATOR) {
$this
->assertEquals('"/usr/bin/php"', $process
->getCommandLine());
}
else {
$this
->assertEquals("'/usr/bin/php'", $process
->getCommandLine());
}
}