spec\GrumPHP\Formatter\RawProcessFormatterSpec::it_displays_stderr_only PHP Метод

it_displays_stderr_only() публичный Метод

public it_displays_stderr_only ( Process $process )
$process Symfony\Component\Process\Process
    function it_displays_stderr_only(Process $process)
    {
        $process->getOutput()->willReturn('');
        $process->getErrorOutput()->willReturn('stderr');
        $this->format($process)->shouldReturn('stderr');
    }