You are here

function LogicalNotTokenSpec::it_scores_4_if_preset_token_does_not_match_the_argument in Zircon Profile 8

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

File

vendor/phpspec/prophecy/spec/Prophecy/Argument/Token/LogicalNotTokenSpec.php, line 42

Class

LogicalNotTokenSpec

Namespace

spec\Prophecy\Argument\Token

Code

function it_scores_4_if_preset_token_does_not_match_the_argument($token) {
  $token
    ->scoreArgument('argument')
    ->willReturn(false);
  $this
    ->scoreArgument('argument')
    ->shouldBe(4);
}