spec\PhpSpec\Listener\ClassNotFoundListenerSpec::it_does_not_prompt_for_class_generation_if_no_exception_was_thrown PHP Метод

it_does_not_prompt_for_class_generation_if_no_exception_was_thrown() публичный Метод

public it_does_not_prompt_for_class_generation_if_no_exception_was_thrown ( $exampleEvent, $suiteEvent, $io )
    function it_does_not_prompt_for_class_generation_if_no_exception_was_thrown($exampleEvent, $suiteEvent, $io)
    {
        $io->isCodeGenerationEnabled()->willReturn(true);
        $this->afterExample($exampleEvent);
        $this->afterSuite($suiteEvent);
        $io->askConfirmation(Argument::any())->shouldNotBeenCalled();
    }