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

it_will_report_bootstrap_path_when_one_is_specified_at_the_command_line() public method

    function it_will_report_bootstrap_path_when_one_is_specified_at_the_command_line($input, $config)
    {
        $input->getOption('bootstrap')->willReturn('/path/to/bootstrap.php');
        $config->getBootstrapPath()->willReturn(false);
        $this->getBootstrapPath()->shouldReturn('/path/to/bootstrap.php');
    }