public function testShouldNotThrowALogicExceptionIfNoArgument() {
$process = ProcessBuilder::create()
->setPrefix('/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());
}
}