public function testShouldNotThrowALogicExceptionIfNoPrefix() {
$process = ProcessBuilder::create(array(
'/usr/bin/php',
))
->getProcess();
if (defined('PHP_WINDOWS_VERSION_BUILD')) {
$this
->assertEquals('"/usr/bin/php"', $process
->getCommandLine());
}
else {
$this
->assertEquals("'/usr/bin/php'", $process
->getCommandLine());
}
}