function ContentLanguageSettingsTest::createEntity

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/ContentLanguageSettingsTest.php \Drupal\Tests\jsonapi\Functional\ContentLanguageSettingsTest::createEntity()
  2. 8.9.x core/modules/jsonapi/tests/src/Functional/ContentLanguageSettingsTest.php \Drupal\Tests\jsonapi\Functional\ContentLanguageSettingsTest::createEntity()
  3. 10 core/modules/jsonapi/tests/src/Functional/ContentLanguageSettingsTest.php \Drupal\Tests\jsonapi\Functional\ContentLanguageSettingsTest::createEntity()

Overrides ResourceTestBase::createEntity

File

core/modules/jsonapi/tests/src/Functional/ContentLanguageSettingsTest.php, line 58

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;
}

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