You are here

function IdenticalValueTokenSpec::it_scores_false_if_object_value_is_not_the_same_instance_than_argument in Zircon Profile 8.0

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

File

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

Class

IdenticalValueTokenSpec

Namespace

spec\Prophecy\Argument\Token

Code

function it_scores_false_if_object_value_is_not_the_same_instance_than_argument() {
  $this
    ->beConstructedWith(new \stdClass());
  $this
    ->scoreArgument(new \stdClass())
    ->shouldReturn(false);
}