public function EntityUnitTest::testLoadMultiple 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::testLoadMultiple()
@covers ::loadMultiple
Tests Entity::loadMultiple() when called statically on a subclass of Entity.
File
- core/
tests/ Drupal/ Tests/ Core/ Entity/ EntityUnitTest.php, line 295 - Contains \Drupal\Tests\Core\Entity\EntityUnitTest.
Class
- EntityUnitTest
- @coversDefaultClass \Drupal\Core\Entity\Entity @group Entity @group Access
Namespace
Drupal\Tests\Core\EntityCode
public function testLoadMultiple() {
$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('loadMultiple')
->with(array(
1,
))
->will($this
->returnValue(array(
1 => $this->entity,
)));
$this->entityManager
->expects($this
->once())
->method('getStorage')
->with($this->entityTypeId)
->will($this
->returnValue($storage));
// Call Entity::loadMultiple statically and check that it returns the mock
// entity.
$this
->assertSame(array(
1 => $this->entity,
), $class_name::loadMultiple(array(
1,
)));
}