File: D:/HostingSpaces/SBogers10/ehbo.today/vendor/phpspec/phpspec/spec/PhpSpec/Wrapper/SubjectSpec.php
<?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;
}
}