private function SimpleProcessTest::expectExceptionIfPHPSigchild in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/process/Tests/SimpleProcessTest.php \Symfony\Component\Process\Tests\SimpleProcessTest::expectExceptionIfPHPSigchild()
11 calls to SimpleProcessTest::expectExceptionIfPHPSigchild()
- SimpleProcessTest::testExitCodeIsAvailableAfterSignal in vendor/
symfony/ process/ Tests/ SimpleProcessTest.php - SimpleProcessTest::testKillSignalTerminatesProcessCleanly in vendor/
symfony/ process/ Tests/ SimpleProcessTest.php - SimpleProcessTest::testProcessIsNotSignaled in vendor/
symfony/ process/ Tests/ SimpleProcessTest.php - SimpleProcessTest::testProcessIsSignaledIfStopped in vendor/
symfony/ process/ Tests/ SimpleProcessTest.php - SimpleProcessTest::testProcessWithoutTermSignal in vendor/
symfony/ process/ Tests/ SimpleProcessTest.php
File
- vendor/
symfony/ process/ Tests/ SimpleProcessTest.php, line 216
Class
Namespace
Symfony\Component\Process\TestsCode
private function expectExceptionIfPHPSigchild($classname, $message) {
if ($this->enabledSigchild) {
$this
->setExpectedException($classname, $message);
}
}