You are here

function ObjectProphecySpec::it_sets_parentClass_during_willExtend_call in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpspec/prophecy/spec/Prophecy/Prophecy/ObjectProphecySpec.php \spec\Prophecy\Prophecy\ObjectProphecySpec::it_sets_parentClass_during_willExtend_call()

File

vendor/phpspec/prophecy/spec/Prophecy/Prophecy/ObjectProphecySpec.php, line 26

Class

ObjectProphecySpec

Namespace

spec\Prophecy\Prophecy

Code

function it_sets_parentClass_during_willExtend_call($lazyDouble) {
  $lazyDouble
    ->setParentClass('123')
    ->shouldBeCalled();
  $this
    ->willExtend('123');
}