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

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

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