function EntityManagerTest::testGetListBuilder
@covers ::getListBuilder
@expectedDeprecation EntityManagerInterface::getListBuilder() is deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use \Drupal\Core\Entity\EntityTypeManager::getListBuilder() instead. See https://www.drupal.org/node/2549139
File
-
core/
tests/ Drupal/ Tests/ Core/ Entity/ EntityManagerTest.php, line 678
Class
- EntityManagerTest
- @coversDefaultClass \Drupal\Core\Entity\EntityManager @group Entity @group legacy
Namespace
Drupal\Tests\Core\EntityCode
public function testGetListBuilder() {
$list_builder = $this->prophesize(EntityListBuilderInterface::class)
->reveal();
$this->entityTypeManager
->getListBuilder('entity_test')
->shouldBeCalled()
->willReturn($list_builder);
$this->assertInstanceOf(EntityListBuilderInterface::class, $this->entityManager
->getListBuilder('entity_test'));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.