You are here

private function SimpleProcessTest::expectExceptionIfPHPSigchild in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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

... See full list

File

vendor/symfony/process/Tests/SimpleProcessTest.php, line 216

Class

SimpleProcessTest

Namespace

Symfony\Component\Process\Tests

Code

private function expectExceptionIfPHPSigchild($classname, $message) {
  if ($this->enabledSigchild) {
    $this
      ->setExpectedException($classname, $message);
  }
}