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

it_will_report_bootstrap_path_when_one_is_in_the_config_file() public method

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