You are here

function MethodNodeSpec::it_is_constructable_with_code in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpspec/prophecy/spec/Prophecy/Doubler/Generator/Node/MethodNodeSpec.php \spec\Prophecy\Doubler\Generator\Node\MethodNodeSpec::it_is_constructable_with_code()

File

vendor/phpspec/prophecy/spec/Prophecy/Doubler/Generator/Node/MethodNodeSpec.php, line 101

Class

MethodNodeSpec

Namespace

spec\Prophecy\Doubler\Generator\Node

Code

function it_is_constructable_with_code() {
  $this
    ->beConstructedWith('getTitle', 'die();');
  $this
    ->getCode()
    ->shouldReturn('die();');
}