You are here

protected function EntityViewDisplayTest::createEntity in JSON:API 8.2

Same name and namespace in other branches
  1. 8 tests/src/Functional/EntityViewDisplayTest.php \Drupal\Tests\jsonapi\Functional\EntityViewDisplayTest::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/EntityViewDisplayTest.php, line 48

Class

EntityViewDisplayTest
JSON:API integration test for the "EntityViewDisplay" 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();

  // Create a view display.
  $view_display = EntityViewDisplay::create([
    'targetEntityType' => 'node',
    'bundle' => 'camelids',
    'mode' => 'default',
    'status' => TRUE,
  ]);
  $view_display
    ->save();
  return $view_display;
}