You are here

public function MessageTest::testRevisions 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::testRevisions()

Tests individual and collection revisions.

Overrides ResourceTestBase::testRevisions

File

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

Class

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

Namespace

Drupal\Tests\jsonapi\Functional

Code

public function testRevisions() {

  // Contact Message entities are not stored, so they cannot be retrieved.
  $this
    ->expectException(RouteNotFoundException::class);
  $this
    ->expectExceptionMessage('Route "jsonapi.contact_message--camelids.individual" does not exist.');
  Url::fromRoute('jsonapi.contact_message--camelids.individual')
    ->toString(TRUE);
}