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

it_will_report_bootstrap_path_from_cli_when_different_paths_are_specified_in_config_and_cli() public method

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