You are here

protected function MessageResourceTestBase::createEntity in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/contact/tests/src/Functional/Rest/MessageResourceTestBase.php \Drupal\Tests\contact\Functional\Rest\MessageResourceTestBase::createEntity()
  2. 9 core/modules/contact/tests/src/Functional/Rest/MessageResourceTestBase.php \Drupal\Tests\contact\Functional\Rest\MessageResourceTestBase::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/MessageResourceTestBase.php, line 45

Class

MessageResourceTestBase

Namespace

Drupal\Tests\contact\Functional\Rest

Code

protected function createEntity() {
  if (!ContactForm::load('camelids')) {

    // Create a "Camelids" contact form.
    ContactForm::create([
      'id' => 'camelids',
      'label' => 'Llama',
      'message' => 'Let us know what you think about llamas',
      'reply' => 'Llamas are indeed awesome!',
      'recipients' => [
        'llama@example.com',
        'contact@example.com',
      ],
    ])
      ->save();
  }
  $message = Message::create([
    'contact_form' => 'camelids',
    'subject' => 'Llama Gabilondo',
    'message' => 'Llamas are awesome!',
  ]);
  $message
    ->save();
  return $message;
}