function ContactFormResourceTestBase::createEntity
Creates the entity to be tested.
Return value
\Drupal\Core\Entity\EntityInterface The entity to be tested.
Overrides EntityResourceTestBase::createEntity
File
- 
              core/modules/ contact/ tests/ src/ Functional/ Rest/ ContactFormResourceTestBase.php, line 47 
Class
Namespace
Drupal\Tests\contact\Functional\RestCode
protected function createEntity() {
  $contact_form = ContactForm::create([
    'id' => 'llama',
    'label' => 'Llama',
    'message' => 'Let us know what you think about llamas',
    'reply' => 'Llamas are indeed awesome!',
    'recipients' => [
      'llama@example.com',
      'contact@example.com',
    ],
  ]);
  $contact_form->save();
  return $contact_form;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
