You are here

public function EntityManagerTest::testCreateHandlerInstance in Drupal 8

@covers ::createHandlerInstance

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

File

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

Class

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

Namespace

Drupal\Tests\Core\Entity

Code

public function testCreateHandlerInstance() {
  $handler = $this
    ->prophesize(EntityHandlerInterface::class)
    ->reveal();
  $entity_type = $this
    ->prophesize(EntityTypeInterface::class)
    ->reveal();
  $this->entityTypeManager
    ->createHandlerInstance(EntityHandlerInterface::class, $entity_type)
    ->shouldBeCalled()
    ->willReturn($handler);
  $this
    ->assertInstanceOf(EntityHandlerInterface::class, $this->entityManager
    ->createHandlerInstance(EntityHandlerInterface::class, $entity_type));
}