spec\Prophecy\Doubler\Generator\Node\ClassNodeSpec::its_getMethod_returns_method_by_name PHP Method

its_getMethod_returns_method_by_name() public method

public its_getMethod_returns_method_by_name ( Prophecy\Doubler\Generator\Node\MethodNode $method )
$method Prophecy\Doubler\Generator\Node\MethodNode
    function its_getMethod_returns_method_by_name(MethodNode $method)
    {
        $method->getName()->willReturn('getName');
        $this->addMethod($method);
        $this->getMethod('getName')->shouldReturn($method);
    }