You are here

public function SimpleProcessTest::testSignalProcessNotRunning in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/process/Tests/SimpleProcessTest.php \Symfony\Component\Process\Tests\SimpleProcessTest::testSignalProcessNotRunning()

@expectedException \Symfony\Component\Process\Exception\LogicException

Overrides AbstractProcessTest::testSignalProcessNotRunning

File

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

Class

SimpleProcessTest

Namespace

Symfony\Component\Process\Tests

Code

public function testSignalProcessNotRunning() {
  $this
    ->setExpectedException('Symfony\\Component\\Process\\Exception\\LogicException', 'Can not send signal on a non running process.');
  parent::testSignalProcessNotRunning();
}