You are here

public function EntityManagerTest::testClearDisplayModeInfo in Drupal 8

Tests the clearDisplayModeInfo() method.

@covers ::clearDisplayModeInfo

@expectedDeprecation EntityManagerInterface::clearDisplayModeInfo() is deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use \Drupal\Core\Entity\EntityDisplayRepositoryInterface::clearDisplayModeInfo() instead. See https://www.drupal.org/node/2549139.

File

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

Class

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

Namespace

Drupal\Tests\Core\Entity

Code

public function testClearDisplayModeInfo() {
  $this->entityDisplayRepository
    ->clearDisplayModeInfo()
    ->shouldBeCalled()
    ->willReturn($this->entityDisplayRepository);
  $this
    ->assertEquals($this->entityManager, $this->entityManager
    ->clearDisplayModeInfo());
}