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