public function EntityManagerTest::testGetHandler in Drupal 8
@covers ::getHandler
@expectedDeprecation EntityManagerInterface::getHandler() is deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use \Drupal\Core\Entity\EntityTypeManager::getHandler() instead. See https://www.drupal.org/node/2549139
File
- core/tests/ Drupal/ Tests/ Core/ Entity/ EntityManagerTest.php, line 711 
Class
- EntityManagerTest
- @coversDefaultClass \Drupal\Core\Entity\EntityManager @group Entity @group legacy
Namespace
Drupal\Tests\Core\EntityCode
public function testGetHandler() {
  $handler = $this
    ->prophesize(EntityHandlerInterface::class)
    ->reveal();
  $this->entityTypeManager
    ->getHandler('entity_test', 'storage')
    ->shouldBeCalled()
    ->willReturn($handler);
  $this
    ->assertInstanceOf(EntityHandlerInterface::class, $this->entityManager
    ->getHandler('entity_test', 'storage'));
}