You are here

public function EntityDisplayBaseTest::testGetTargetEntityTypeId in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Config/Entity/EntityDisplayBaseTest.php \Drupal\Tests\Core\Config\Entity\EntityDisplayBaseTest::testGetTargetEntityTypeId()

@covers ::getTargetEntityTypeId

File

core/tests/Drupal/Tests/Core/Config/Entity/EntityDisplayBaseTest.php, line 22
Contains \Drupal\Tests\Core\Config\Entity\EntityDisplayBaseTest.

Class

EntityDisplayBaseTest
@coversDefaultClass \Drupal\Core\Entity\EntityDisplayBase

Namespace

Drupal\Tests\Core\Config\Entity

Code

public function testGetTargetEntityTypeId() {
  $mock = $this
    ->getMockForAbstractClass('\\Drupal\\Core\\Entity\\EntityDisplayBase', [], '', FALSE);
  $reflection = new \ReflectionProperty($mock, 'targetEntityType');
  $reflection
    ->setAccessible(TRUE);
  $reflection
    ->setValue($mock, 'test');
  $this
    ->assertEquals('test', $mock
    ->getTargetEntityTypeId());
}