You are here

public function ContentLanguageSettingsUnitTest::testTargetEntityTypeId in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/language/tests/src/Unit/ContentLanguageSettingsUnitTest.php \Drupal\Tests\language\Unit\ContentLanguageSettingsUnitTest::testTargetEntityTypeId()

@covers ::getTargetEntityTypeId

File

core/modules/language/tests/src/Unit/ContentLanguageSettingsUnitTest.php, line 123
Contains \Drupal\Tests\language\Unit\ContentLanguageSettingsUnitTest.

Class

ContentLanguageSettingsUnitTest
@coversDefaultClass \Drupal\language\Entity\ContentLanguageSettings @group language

Namespace

Drupal\Tests\language\Unit

Code

public function testTargetEntityTypeId() {
  $config = new ContentLanguageSettings(array(
    'target_entity_type_id' => 'test_entity_type',
    'target_bundle' => 'test_bundle',
  ), 'language_content_settings');
  $this
    ->assertSame('test_entity_type', $config
    ->getTargetEntityTypeId());
}