You are here

public function AbstractProcessTest::testProcessWithoutTermSignalIsNotSignaled in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/process/Tests/AbstractProcessTest.php \Symfony\Component\Process\Tests\AbstractProcessTest::testProcessWithoutTermSignalIsNotSignaled()
3 calls to AbstractProcessTest::testProcessWithoutTermSignalIsNotSignaled()
SigchildDisabledProcessTest::testProcessWithoutTermSignalIsNotSignaled in vendor/symfony/process/Tests/SigchildDisabledProcessTest.php
@expectedException \Symfony\Component\Process\Exception\RuntimeException @expectedExceptionMessage This PHP has been compiled with --enable-sigchild. Term signal can not be retrieved.
SigchildEnabledProcessTest::testProcessWithoutTermSignalIsNotSignaled in vendor/symfony/process/Tests/SigchildEnabledProcessTest.php
@expectedException \Symfony\Component\Process\Exception\RuntimeException @expectedExceptionMessage This PHP has been compiled with --enable-sigchild. Term signal can not be retrieved.
SimpleProcessTest::testProcessWithoutTermSignalIsNotSignaled in vendor/symfony/process/Tests/SimpleProcessTest.php
3 methods override AbstractProcessTest::testProcessWithoutTermSignalIsNotSignaled()
SigchildDisabledProcessTest::testProcessWithoutTermSignalIsNotSignaled in vendor/symfony/process/Tests/SigchildDisabledProcessTest.php
@expectedException \Symfony\Component\Process\Exception\RuntimeException @expectedExceptionMessage This PHP has been compiled with --enable-sigchild. Term signal can not be retrieved.
SigchildEnabledProcessTest::testProcessWithoutTermSignalIsNotSignaled in vendor/symfony/process/Tests/SigchildEnabledProcessTest.php
@expectedException \Symfony\Component\Process\Exception\RuntimeException @expectedExceptionMessage This PHP has been compiled with --enable-sigchild. Term signal can not be retrieved.
SimpleProcessTest::testProcessWithoutTermSignalIsNotSignaled in vendor/symfony/process/Tests/SimpleProcessTest.php

File

vendor/symfony/process/Tests/AbstractProcessTest.php, line 673

Class

AbstractProcessTest
@author Robert Schönthal <seroscho@googlemail.com>

Namespace

Symfony\Component\Process\Tests

Code

public function testProcessWithoutTermSignalIsNotSignaled() {
  if ('\\' === DIRECTORY_SEPARATOR) {
    $this
      ->markTestSkipped('Windows does not support POSIX signals');
  }
  $process = $this
    ->getProcess(self::$phpBin . ' -v');
  $process
    ->run();
  $this
    ->assertFalse($process
    ->hasBeenSignaled());
}