%PDF- %PDF-
Direktori : /var/www/html/rental/vendor/phpspec/phpspec/spec/PhpSpec/Listener/ |
Current File : /var/www/html/rental/vendor/phpspec/phpspec/spec/PhpSpec/Listener/StopOnFailureListenerSpec.php |
<?php namespace spec\PhpSpec\Listener; use PhpSpec\ObjectBehavior; use Prophecy\Argument; use PhpSpec\Event\ExampleEvent; use PhpSpec\Console\IO; class StopOnFailureListenerSpec extends ObjectBehavior { function let(IO $io) { $io->isStopOnFailureEnabled()->willReturn(false); $this->beConstructedWith($io); } function it_is_an_event_subscriber() { $this->shouldHaveType('Symfony\Component\EventDispatcher\EventSubscriberInterface'); } function it_does_not_throw_any_exception_when_example_succeeds(ExampleEvent $event) { $event->getResult()->willReturn(ExampleEvent::PASSED); $this->afterExample($event); } function it_does_not_throw_any_exception_for_unimplemented_examples(ExampleEvent $event) { $event->getResult()->willReturn(ExampleEvent::PENDING); $this->afterExample($event); } function it_throws_an_exception_when_an_example_fails_and_option_is_set(ExampleEvent $event, $io) { $io->isStopOnFailureEnabled()->willReturn(true); $event->getResult()->willReturn(ExampleEvent::FAILED); $this->shouldThrow('\PhpSpec\Exception\Example\StopOnFailureException')->duringAfterExample($event); } function it_does_not_throw_an_exception_when_an_example_fails_and_option_is_not_set(ExampleEvent $event) { $event->getResult()->willReturn(ExampleEvent::FAILED); $this->afterExample($event); } function it_throws_an_exception_when_an_example_breaks_and_option_is_set(ExampleEvent $event, $io) { $io->isStopOnFailureEnabled()->willReturn(true); $event->getResult()->willReturn(ExampleEvent::BROKEN); $this->shouldThrow('\PhpSpec\Exception\Example\StopOnFailureException')->duringAfterExample($event); } function it_does_not_throw_an_exception_when_an_example_breaks_and_option_is_not_set(ExampleEvent $event) { $event->getResult()->willReturn(ExampleEvent::BROKEN); $this->afterExample($event); } }