You are here

protected function MessageTest::createEntity in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/jsonapi/tests/src/Functional/MessageTest.php \Drupal\Tests\jsonapi\Functional\MessageTest::createEntity()

Creates the entity to be tested.

Return value

\Drupal\Core\Entity\EntityInterface The entity to be tested.

Overrides ResourceTestBase::createEntity

File

core/modules/jsonapi/tests/src/Functional/MessageTest.php, line 61

Class

MessageTest
JSON:API integration test for the "Message" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

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;
}