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');
    }