spec\Prophecy\Prophecy\MethodProphecySpec::it_adds_ThrowPromise_during_willThrow_call PHP Method

it_adds_ThrowPromise_during_willThrow_call() public method

public it_adds_ThrowPromise_during_willThrow_call ( $objectProphecy )
    function it_adds_ThrowPromise_during_willThrow_call($objectProphecy)
    {
        $objectProphecy->addMethodProphecy($this)->willReturn(null);
        $this->willThrow('RuntimeException');
        $this->getPromise()->shouldBeAnInstanceOf('Prophecy\\Promise\\ThrowPromise');
    }
MethodProphecySpec