/**
  * @expectedException \Symfony\Component\Process\Exception\LogicException
  * @expectedExceptionMessage Can not send signal on a non running process.
  */
 public function testSignalProcessNotRunning()
 {
     parent::testSignalProcessNotRunning();
 }
 public function testSignalProcessNotRunning()
 {
     $this->setExpectedException('Symfony\\Component\\Process\\Exception\\LogicException', 'Can not send signal on a non running process.');
     parent::testSignalProcessNotRunning();
 }
Example #3
0
 /**
  * @expectedException \Symfony\Component\Process\Exception\LogicException
  */
 public function testSignalProcessNotRunning()
 {
     $this->skipIfPHPSigchild();
     parent::testSignalProcessNotRunning();
 }