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

it_will_enable_rerunning_if_command_line_option_is_not_set_and_config_doesnt_disallow() public method

    function it_will_enable_rerunning_if_command_line_option_is_not_set_and_config_doesnt_disallow($input, $config)
    {
        $input->getOption('no-rerun')->willReturn(false);
        $config->isReRunEnabled()->willReturn(true);
        $this->isRerunEnabled()->shouldReturn(true);
    }