function ContentLanguageSettingsUnitTest::testTargetEntityTypeId

@covers ::getTargetEntityTypeId

File

core/modules/language/tests/src/Unit/ContentLanguageSettingsUnitTest.php, line 125

Class

ContentLanguageSettingsUnitTest
@coversDefaultClass \Drupal\language\Entity\ContentLanguageSettings[[api-linebreak]] @group language

Namespace

Drupal\Tests\language\Unit

Code

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

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