function EntityFormTest::testSetEntityManager

Tests that setEntityManager triggers proper deprecation errors.

@covers ::setEntityManager

@group legacy

@expectedDeprecation EntityForm::setEntityManager() is deprecated in drupal:8.0.0 and is removed from drupal:9.0.0. Use EntityFormInterface::setEntityTypeManager() instead. See https://www.drupal.org/node/2549139

File

core/tests/Drupal/Tests/Core/Entity/EntityFormTest.php, line 240

Class

EntityFormTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Entity%21EntityForm.php/class/EntityForm/8.9.x" title="Base class for entity forms." class="local">\Drupal\Core\Entity\EntityForm</a> @group Entity

Namespace

Drupal\Tests\Core\Entity

Code

public function testSetEntityManager() {
    $this->entityForm
        ->setEntityManager($this->prophesize(EntityManager::class)
        ->reveal());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.