%PDF- %PDF-
Direktori : /var/www/html/car_rent/vendor/phpspec/phpspec/spec/PhpSpec/Matcher/ |
Current File : /var/www/html/car_rent/vendor/phpspec/phpspec/spec/PhpSpec/Matcher/ThrowMatcherSpec.php |
<?php namespace spec\PhpSpec\Matcher; use PhpSpec\ObjectBehavior; use Prophecy\Argument; use PhpSpec\Wrapper\Unwrapper; use PhpSpec\Formatter\Presenter\PresenterInterface; use PhpSpec\Exception\Example\SkippingException; use ArrayObject; class ThrowMatcherSpec extends ObjectBehavior { function let(Unwrapper $unwrapper, PresenterInterface $presenter) { $unwrapper->unwrapAll(Argument::any())->willReturnArgument(); $presenter->presentValue(Argument::any())->willReturn('val1', 'val2'); $this->beConstructedWith($unwrapper, $presenter); } function it_supports_the_throw_alias_for_object_and_exception_name() { $this->supports('throw', '', array())->shouldReturn(true); } function it_accepts_a_method_during_which_an_exception_should_be_thrown(ArrayObject $arr) { $arr->ksort()->willThrow('\Exception'); $this->positiveMatch('throw', $arr, array('\Exception'))->during('ksort', array()); } function it_accepts_a_method_during_which_an_error_specified_by_class_name_should_be_thrown(ArrayObject $arr) { if (!class_exists('\Error')) { throw new SkippingException('The class Error, introduced in PHP 7, does not exist'); } $arr->ksort()->willThrow('\Error'); $this->positiveMatch('throw', $arr, array('\Error'))->during('ksort', array()); } function it_accepts_a_method_during_which_an_error_specified_by_instance_should_be_thrown(ArrayObject $arr) { if (!class_exists('\Error')) { throw new SkippingException('The class Error, introduced in PHP 7, does not exist'); } $arr->ksort()->will(function(){ throw new \Error(); }); $this->positiveMatch('throw', $arr, array(new \Error()))->during('ksort', array()); } function it_accepts_a_method_during_which_an_exception_should_not_be_thrown(ArrayObject $arr) { $this->negativeMatch('throw', $arr, array('\Exception'))->during('ksort', array()); } function it_accepts_a_method_during_which_an_error_should_not_be_thrown(ArrayObject $arr) { if (!class_exists('\Error')) { throw new SkippingException('The class Error, introduced in PHP 7, does not exist'); } $this->negativeMatch('throw', $arr, array('\Error'))->during('ksort', array()); } }