You are here

function MagicCallPatchSpec::it_ignores_existing_methods in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpspec/prophecy/spec/Prophecy/Doubler/ClassPatch/MagicCallPatchSpec.php \spec\Prophecy\Doubler\ClassPatch\MagicCallPatchSpec::it_ignores_existing_methods()

Parameters

\Prophecy\Doubler\Generator\Node\ClassNode $node:

File

vendor/phpspec/prophecy/spec/Prophecy/Doubler/ClassPatch/MagicCallPatchSpec.php, line 39

Class

MagicCallPatchSpec

Namespace

spec\Prophecy\Doubler\ClassPatch

Code

function it_ignores_existing_methods($node) {
  $node
    ->getParentClass()
    ->willReturn('spec\\Prophecy\\Doubler\\ClassPatch\\MagicalApiExtended');
  $node
    ->addMethod(new MethodNode('undefinedMethod'))
    ->shouldBeCalled();
  $node
    ->addMethod(new MethodNode('definedMethod'))
    ->shouldNotBeCalled();
  $this
    ->apply($node);
}