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