You are here

function ArgumentsWildcardSpec::it_returns_score_of_1_if_there_are_no_tokens_and_arguments in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpspec/prophecy/spec/Prophecy/Argument/ArgumentsWildcardSpec.php \spec\Prophecy\Argument\ArgumentsWildcardSpec::it_returns_score_of_1_if_there_are_no_tokens_and_arguments()

File

vendor/phpspec/prophecy/spec/Prophecy/Argument/ArgumentsWildcardSpec.php, line 48

Class

ArgumentsWildcardSpec

Namespace

spec\Prophecy\Argument

Code

function it_returns_score_of_1_if_there_are_no_tokens_and_arguments() {
  $this
    ->beConstructedWith(array());
  $this
    ->scoreArguments(array())
    ->shouldReturn(1);
}