function ConfigTestResourceTestBase::createEntity
Creates the entity to be tested.
Return value
\Drupal\Core\Entity\EntityInterface The entity to be tested.
Overrides EntityResourceTestBase::createEntity
File
- 
              core/modules/ config/ tests/ config_test/ tests/ src/ Functional/ Rest/ ConfigTestResourceTestBase.php, line 37 
Class
Namespace
Drupal\Tests\config_test\Functional\RestCode
protected function createEntity() {
  $config_test = ConfigTest::create([
    'id' => 'llama',
    'label' => 'Llama',
  ]);
  $config_test->save();
  return $config_test;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
