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