/**
  * @expectedException \Symfony\Component\Process\Exception\RuntimeException
  */
 public function testProcessWithoutTermSignal()
 {
     parent::testProcessWithoutTermSignal();
 }
 public function testStartAfterATimeout()
 {
     if (defined('PHP_WINDOWS_VERSION_BUILD')) {
         $this->markTestSkipped('Restarting a timed-out process on Windows is not supported in sigchild environment');
     }
     parent::testStartAfterATimeout();
 }
 public function testStartAfterATimeout()
 {
     if ('\\' === DIRECTORY_SEPARATOR) {
         $this->markTestSkipped('Restarting a timed-out process on Windows is not supported in sigchild environment');
     }
     parent::testStartAfterATimeout();
 }
 /**
  * @expectedException Symfony\Component\Process\Exception\RuntimeException
  */
 public function testIsNotSuccessful()
 {
     parent::testIsNotSuccessful();
 }