@expectedException Symfony\Component\Process\Exception\RuntimeException
public function testSignalWithWrongNonIntSignal() {
if (defined('PHP_WINDOWS_VERSION_BUILD')) {
$this
->markTestSkipped('POSIX signals do not work on windows');
}
$process = $this
->getProcess('php -r "sleep(3);"');
$process
->start();
$process
->signal('Céphalopodes');
}