public function EntityManagerTest::testHasDefinition in Drupal 8
@covers ::hasDefinition
@expectedDeprecation EntityManagerInterface::hasDefinition() is deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use \Drupal\Core\Entity\EntityTypeManager::hasDefinition() instead. See https://www.drupal.org/node/2549139
File
- core/tests/ Drupal/ Tests/ Core/ Entity/ EntityManagerTest.php, line 626 
Class
- EntityManagerTest
- @coversDefaultClass \Drupal\Core\Entity\EntityManager @group Entity @group legacy
Namespace
Drupal\Tests\Core\EntityCode
public function testHasDefinition() {
  $this->entityTypeManager
    ->hasDefinition('entity_test')
    ->shouldBeCalled()
    ->willReturn(TRUE);
  $this
    ->assertTrue($this->entityManager
    ->hasDefinition('entity_test'));
}