public function AbstractProcessTest::testProcessIsNotSignaled in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/process/Tests/AbstractProcessTest.php \Symfony\Component\Process\Tests\AbstractProcessTest::testProcessIsNotSignaled()
3 calls to AbstractProcessTest::testProcessIsNotSignaled()
- SigchildDisabledProcessTest::testProcessIsNotSignaled 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::testProcessIsNotSignaled 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::testProcessIsNotSignaled in vendor/
symfony/ process/ Tests/ SimpleProcessTest.php
3 methods override AbstractProcessTest::testProcessIsNotSignaled()
- SigchildDisabledProcessTest::testProcessIsNotSignaled 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::testProcessIsNotSignaled 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::testProcessIsNotSignaled in vendor/
symfony/ process/ Tests/ SimpleProcessTest.php
File
- vendor/
symfony/ process/ Tests/ AbstractProcessTest.php, line 662
Class
- AbstractProcessTest
- @author Robert Schönthal <seroscho@googlemail.com>
Namespace
Symfony\Component\Process\TestsCode
public function testProcessIsNotSignaled() {
if ('\\' === DIRECTORY_SEPARATOR) {
$this
->markTestSkipped('Windows does not support POSIX signals');
}
$process = $this
->getProcess(self::$phpBin . ' -v');
$process
->run();
$this
->assertFalse($process
->hasBeenSignaled());
}