You are here

function IdenticalValueTokenSpec::it_scores_11_if_string_value_is_identical_to_argument in Zircon Profile 8

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

File

vendor/phpspec/prophecy/spec/Prophecy/Argument/Token/IdenticalValueTokenSpec.php, line 20

Class

IdenticalValueTokenSpec

Namespace

spec\Prophecy\Argument\Token

Code

function it_scores_11_if_string_value_is_identical_to_argument() {
  $this
    ->beConstructedWith('foo');
  $this
    ->scoreArgument('foo')
    ->shouldReturn(11);
}