spec\GrumPHP\Formatter\GitBlacklistFormatterSpec::it_does_not_displays_the_full_process_output PHP Метод

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

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