You are here

function LogicalAndTokenSpec::it_does_not_score_if_there_are_no_arguments_or_tokens in Zircon Profile 8

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

File

vendor/phpspec/prophecy/spec/Prophecy/Argument/Token/LogicalAndTokenSpec.php, line 55

Class

LogicalAndTokenSpec

Namespace

spec\Prophecy\Argument\Token

Code

function it_does_not_score_if_there_are_no_arguments_or_tokens() {
  $this
    ->beConstructedWith(array());
  $this
    ->scoreArgument('any')
    ->shouldReturn(false);
}