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();
    }