public function EntityUnitTest::testLoad in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Entity/EntityUnitTest.php \Drupal\Tests\Core\Entity\EntityUnitTest::testLoad()
@covers ::load
Tests Entity::load() when called statically on a subclass of Entity.
File
- core/
tests/ Drupal/ Tests/ Core/ Entity/ EntityUnitTest.php, line 265 - Contains \Drupal\Tests\Core\Entity\EntityUnitTest.
Class
- EntityUnitTest
- @coversDefaultClass \Drupal\Core\Entity\Entity @group Entity @group Access
Namespace
Drupal\Tests\Core\EntityCode
public function testLoad() {
$this
->setupTestLoad();
$class_name = get_class($this->entity);
$this->entityManager
->expects($this
->once())
->method('getEntityTypeFromClass')
->with($class_name)
->willReturn($this->entityTypeId);
$storage = $this
->getMock('\\Drupal\\Core\\Entity\\EntityStorageInterface');
$storage
->expects($this
->once())
->method('load')
->with(1)
->will($this
->returnValue($this->entity));
$this->entityManager
->expects($this
->once())
->method('getStorage')
->with($this->entityTypeId)
->will($this
->returnValue($storage));
// Call Entity::load statically and check that it returns the mock entity.
$this
->assertSame($this->entity, $class_name::load(1));
}