spec\Prophecy\Prophecy\ObjectProphecySpec::it_should_proxy_getProphecyMethodCalls_to_CallCenter PHP Method

it_should_proxy_getProphecyMethodCalls_to_CallCenter() public method

public it_should_proxy_getProphecyMethodCalls_to_CallCenter ( $lazyDouble, Prophecy\Call\CallCenter $callCenter, Prophecy\Argument\ArgumentsWildcard $wildcard, Prophecy\Call\Call $call )
$callCenter Prophecy\Call\CallCenter
$wildcard Prophecy\Argument\ArgumentsWildcard
$call Prophecy\Call\Call
    function it_should_proxy_getProphecyMethodCalls_to_CallCenter($lazyDouble, CallCenter $callCenter, ArgumentsWildcard $wildcard, Call $call)
    {
        $this->beConstructedWith($lazyDouble, $callCenter);
        $callCenter->findCalls('setName', $wildcard)->willReturn(array($call));
        $this->findProphecyMethodCalls('setName', $wildcard)->shouldReturn(array($call));
    }