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 41  
Class
- BaseFieldOverrideResourceTestBase
 - Resource test base for BaseFieldOverride entity.
 
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',
    'label' => 'Promote to front page',
  ]);
  $entity->save();
  return $entity;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.