public function EntityManagerTest::testLoadEntityByConfigTarget in Drupal 8
Tests the loadEntityByConfigTarget() method.
@covers ::loadEntityByConfigTarget
@expectedDeprecation EntityManagerInterface::loadEntityByConfigTarget() is deprecated in 8.0.0 and will be removed before Drupal 9.0.0. Use \Drupal\Core\Entity\EntityRepository::loadEntityByConfigTarget() instead. See https://www.drupal.org/node/2549139.
File
- core/
tests/ Drupal/ Tests/ Core/ Entity/ EntityManagerTest.php, line 302
Class
- EntityManagerTest
- @coversDefaultClass \Drupal\Core\Entity\EntityManager @group Entity @group legacy
Namespace
Drupal\Tests\Core\EntityCode
public function testLoadEntityByConfigTarget() {
$entity = $this
->prophesize(EntityInterface::class);
$this->entityRepository
->loadEntityByConfigTarget('config_test', 'test')
->shouldBeCalled()
->willReturn($entity
->reveal());
$this
->assertInstanceOf(EntityInterface::class, $this->entityManager
->loadEntityByConfigTarget('config_test', 'test'));
}