File
- drupal/core/vendor/symfony/process/Symfony/Component/Process/Tests/AbstractProcessTest.php, line 442
Class
- AbstractProcessTest
- @author Robert Schönthal <seroscho@googlemail.com>
Namespace
Symfony\Component\Process\Tests
Code
public function testGetPidIsNullBeforeStart() {
$process = $this
->getProcess('php -r "sleep(1);"');
$this
->assertNull($process
->getPid());
}