spec\Prophecy\Prophecy\MethodProphecySpec::it_adds_NoCallsPrediction_during_shouldNotBeCalled_call PHP Method

it_adds_NoCallsPrediction_during_shouldNotBeCalled_call() public method

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