You are here

protected function EntityTestComputedFieldTest::createEntity in Drupal 10

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/EntityTestComputedFieldTest.php \Drupal\Tests\jsonapi\Functional\EntityTestComputedFieldTest::createEntity()

File

core/modules/jsonapi/tests/src/Functional/EntityTestComputedFieldTest.php, line 74

Class

EntityTestComputedFieldTest
JSON:API integration test for the "EntityTestComputedField" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function createEntity() {
  $entity_test = EntityTestComputedField::create([
    'name' => 'Llama',
    'type' => 'entity_test_computed_field',
  ]);
  $entity_test
    ->setOwnerId(0);
  $entity_test
    ->save();
  return $entity_test;
}