spec\PhpSpec\Console\ConsoleIOSpec::it_will_report_no_bootstrap_when_there_is_none PHP Method

it_will_report_no_bootstrap_when_there_is_none() public method

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