spec\PhpSpec\Console\ConsoleIOSpec::it_will_report_no_bootstrap_when_there_is_none PHP 메소드

it_will_report_no_bootstrap_when_there_is_none() 공개 메소드

    function it_will_report_no_bootstrap_when_there_is_none($input, $config)
    {
        $input->getOption('bootstrap')->willReturn(null);
        $config->getBootstrapPath()->willReturn(false);
        $this->getBootstrapPath()->shouldReturn(false);
    }