function EntityTestMapFieldResourceTestBase::createEntity
Creates the entity to be tested.
Return value
\Drupal\Core\Entity\EntityInterface The entity to be tested.
Overrides EntityResourceTestBase::createEntity
File
- 
              core/
modules/ system/ tests/ modules/ entity_test/ tests/ src/ Functional/ Rest/ EntityTestMapFieldResourceTestBase.php, line 59  
Class
Namespace
Drupal\Tests\entity_test\Functional\RestCode
protected function createEntity() {
  $entity = EntityTestMapField::create([
    'name' => 'Llama',
    'type' => 'entity_test_map_field',
    'data' => [
      static::$mapValue,
    ],
  ]);
  $entity->setOwnerId(0);
  $entity->save();
  return $entity;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.