public function AbstractProcessTest::testDisableOutputWhileRunningThrowsException in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/process/Tests/AbstractProcessTest.php \Symfony\Component\Process\Tests\AbstractProcessTest::testDisableOutputWhileRunningThrowsException()
File
- vendor/
symfony/ process/ Tests/ AbstractProcessTest.php, line 1046
Class
- AbstractProcessTest
- @author Robert Schönthal <seroscho@googlemail.com>
Namespace
Symfony\Component\Process\TestsCode
public function testDisableOutputWhileRunningThrowsException() {
$p = $this
->getProcess(self::$phpBin . ' -r "usleep(500000);"');
$p
->start();
$this
->setExpectedException('Symfony\\Component\\Process\\Exception\\RuntimeException', 'Disabling output while the process is running is not possible.');
$p
->disableOutput();
}