You are here

public function EntityManagerTest::testGetViewBuilder in Drupal 8

@covers ::getViewBuilder

@expectedDeprecation EntityManagerInterface::getViewBuilder() is deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use \Drupal\Core\Entity\EntityTypeManager::getViewBuilder() instead. See https://www.drupal.org/node/2549139

File

core/tests/Drupal/Tests/Core/Entity/EntityManagerTest.php, line 689

Class

EntityManagerTest
@coversDefaultClass \Drupal\Core\Entity\EntityManager @group Entity @group legacy

Namespace

Drupal\Tests\Core\Entity

Code

public function testGetViewBuilder() {
  $view_builder = $this
    ->prophesize(EntityViewBuilderInterface::class)
    ->reveal();
  $this->entityTypeManager
    ->getViewBuilder('entity_test')
    ->shouldBeCalled()
    ->willReturn($view_builder);
  $this
    ->assertInstanceOf(EntityViewBuilderInterface::class, $this->entityManager
    ->getViewBuilder('entity_test'));
}