You are here

public function EntityDisplayModeBaseUnitTest::testGetTargetType in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Config/Entity/EntityDisplayModeBaseUnitTest.php \Drupal\Tests\Core\Config\Entity\EntityDisplayModeBaseUnitTest::testGetTargetType()

@covers ::getTargetType

File

core/tests/Drupal/Tests/Core/Config/Entity/EntityDisplayModeBaseUnitTest.php, line 133

Class

EntityDisplayModeBaseUnitTest
@coversDefaultClass \Drupal\Core\Entity\EntityDisplayModeBase @group Config

Namespace

Drupal\Tests\Core\Config\Entity

Code

public function testGetTargetType() {

  // Generate mock.
  $mock = $this
    ->getMockBuilder('Drupal\\Core\\Entity\\EntityDisplayModeBase')
    ->setMethods(NULL)
    ->setConstructorArgs([
    [
      'something' => 'nothing',
    ],
    'test_type',
  ])
    ->getMock();

  // A test value.
  $target = 'test_target_type';

  // Gain access to the protected property.
  $property = new \ReflectionProperty($mock, 'targetEntityType');
  $property
    ->setAccessible(TRUE);

  // Set the property to a known state.
  $property
    ->setValue($mock, $target);

  // Get the target type.
  $value = $mock
    ->getTargetType($target);

  // Test the outcome.
  $this
    ->assertEquals($value, $property
    ->getValue($mock));
}