Lines Matching full:bin
88 $pb->setPrefix('/usr/bin/php');
92 $this->assertEquals('"/usr/bin/php" -v', $proc->getCommandLine());
94 $this->assertEquals("'/usr/bin/php' '-v'", $proc->getCommandLine());
99 $this->assertEquals('"/usr/bin/php" -i', $proc->getCommandLine());
101 $this->assertEquals("'/usr/bin/php' '-i'", $proc->getCommandLine());
108 $pb->setPrefix(['/usr/bin/php', 'composer.phar']);
112 $this->assertEquals('"/usr/bin/php" composer.phar -v', $proc->getCommandLine());
114 $this->assertEquals("'/usr/bin/php' 'composer.phar' '-v'", $proc->getCommandLine());
119 $this->assertEquals('"/usr/bin/php" composer.phar -i', $proc->getCommandLine());
121 $this->assertEquals("'/usr/bin/php' 'composer.phar' '-i'", $proc->getCommandLine());
159 ->setPrefix('/usr/bin/php')
163 $this->assertEquals('"/usr/bin/php"', $process->getCommandLine());
165 $this->assertEquals("'/usr/bin/php'", $process->getCommandLine());
171 $process = ProcessBuilder::create(['/usr/bin/php'])
175 $this->assertEquals('"/usr/bin/php"', $process->getCommandLine());
177 $this->assertEquals("'/usr/bin/php'", $process->getCommandLine());
183 $process = ProcessBuilder::create(['/usr/bin/php'])
192 $process = ProcessBuilder::create(['/usr/bin/php'])