You are here

protected function ContentLanguageSettingsTest::createEntity in JSON:API 8

Same name and namespace in other branches
  1. 8.2 tests/src/Functional/ContentLanguageSettingsTest.php \Drupal\Tests\jsonapi\Functional\ContentLanguageSettingsTest::createEntity()

Creates the entity to be tested.

Return value

\Drupal\Core\Entity\EntityInterface The entity to be tested.

Overrides ResourceTestBase::createEntity

File

tests/src/Functional/ContentLanguageSettingsTest.php, line 50

Class

ContentLanguageSettingsTest
JSON API integration test for "ContentLanguageSettings" config entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function createEntity() {

  // Create a "Camelids" node type.
  $camelids = NodeType::create([
    'name' => 'Camelids',
    'type' => 'camelids',
  ]);
  $camelids
    ->save();
  $entity = ContentLanguageSettings::create([
    'target_entity_type_id' => 'node',
    'target_bundle' => 'camelids',
  ]);
  $entity
    ->setDefaultLangcode('site_default')
    ->save();
  return $entity;
}