function EntityTestLabelResourceTestBase::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/ EntityTestLabelResourceTestBase.php, line 58 
Class
Namespace
Drupal\Tests\entity_test\Functional\RestCode
protected function createEntity() {
  $entity_test_label = EntityTestLabel::create([
    'name' => 'label_llama',
  ]);
  $entity_test_label->setOwnerId(0);
  $entity_test_label->save();
  return $entity_test_label;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
