function BaseFieldOverrideResourceTestBase::createEntity
Creates the entity to be tested.
Return value
\Drupal\Core\Entity\EntityInterface The entity to be tested.
Overrides EntityResourceTestBase::createEntity
File
- 
              core/tests/ Drupal/ FunctionalTests/ Rest/ BaseFieldOverrideResourceTestBase.php, line 36 
Class
Namespace
Drupal\FunctionalTests\RestCode
protected function createEntity() {
  $camelids = NodeType::create([
    'name' => 'Camelids',
    'type' => 'camelids',
  ]);
  $camelids->save();
  $entity = BaseFieldOverride::create([
    'field_name' => 'promote',
    'entity_type' => 'node',
    'bundle' => 'camelids',
  ]);
  $entity->save();
  return $entity;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
