You are here

function MethodNotFoundExceptionSpec::it_has_a_default_null_argument_list in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpspec/prophecy/spec/Prophecy/Exception/Doubler/MethodNotFoundExceptionSpec.php \spec\Prophecy\Exception\Doubler\MethodNotFoundExceptionSpec::it_has_a_default_null_argument_list()

File

vendor/phpspec/prophecy/spec/Prophecy/Exception/Doubler/MethodNotFoundExceptionSpec.php, line 35

Class

MethodNotFoundExceptionSpec

Namespace

spec\Prophecy\Exception\Doubler

Code

function it_has_a_default_null_argument_list() {
  $this
    ->beConstructedWith('', 'User', 'getName');
  $this
    ->getArguments()
    ->shouldReturn(null);
}