Lines Matching refs:process
22 $process = new PhpProcess(<<<PHP
26 $process->start();
27 $process->wait();
28 $this->assertEquals($expected, $process->getOutput());
33 $process = new PhpProcess(<<<'PHP'
38 $commandLine = $process->getCommandLine();
40 $process->start();
41 …$this->assertStringContainsString($commandLine, $process->getCommandLine(), '::getCommandLine() re…
43 $process->wait();
44 …$this->assertStringContainsString($commandLine, $process->getCommandLine(), '::getCommandLine() re…
46 $this->assertSame(\PHP_VERSION.\PHP_SAPI, $process->getOutput());