public function testProcessIsNotSignaled() {
if (defined('PHP_WINDOWS_VERSION_BUILD')) {
$this
->markTestSkipped('Windows does not support POSIX signals');
}
$process = $this
->getProcess('php -m');
$process
->run();
$this
->assertFalse($process
->hasBeenSignaled());
}