spec\Prophecy\Prophecy\MethodProphecySpec::it_adds_CallPrediction_during_shouldBeCalled_call PHP Method

it_adds_CallPrediction_during_shouldBeCalled_call() public method

    function it_adds_CallPrediction_during_shouldBeCalled_call($objectProphecy)
    {
        $objectProphecy->addMethodProphecy($this)->willReturn(null);
        $this->callOnWrappedObject('shouldBeCalled', array());
        $this->getPrediction()->shouldBeAnInstanceOf('Prophecy\\Prediction\\CallPrediction');
    }
MethodProphecySpec