Skip to content

Instantly share code, notes, and snippets.

@wbrframe
Last active September 26, 2018 14:35
Show Gist options
  • Save wbrframe/b9eebeb69418b1973ebbe29057ebc067 to your computer and use it in GitHub Desktop.
Save wbrframe/b9eebeb69418b1973ebbe29057ebc067 to your computer and use it in GitHub Desktop.
public function testIdentityMap()
{
$objectA = $this->entityManager->find('EntityName', 1);
$objectB = $this->entityManager->find('EntityName', 1);
$this->assertSame($objectA, $objectB)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment