コード例 #1
0
 /**
  * @expectedException \Symfony\Component\Process\Exception\LogicException
  * @expectedExceptionMessage Can not send signal on a non running process.
  */
 public function testSignalProcessNotRunning()
 {
     parent::testSignalProcessNotRunning();
 }
コード例 #2
0
 public function testSignalProcessNotRunning()
 {
     $this->setExpectedException('Symfony\\Component\\Process\\Exception\\LogicException', 'Can not send signal on a non running process.');
     parent::testSignalProcessNotRunning();
 }
コード例 #3
0
ファイル: SimpleProcessTest.php プロジェクト: dev-lav/htdocs
 /**
  * @expectedException \Symfony\Component\Process\Exception\LogicException
  */
 public function testSignalProcessNotRunning()
 {
     $this->skipIfPHPSigchild();
     parent::testSignalProcessNotRunning();
 }