public function MessageTest::testRelated in Drupal 10
Same name and namespace in other branches
- 8 core/modules/jsonapi/tests/src/Functional/MessageTest.php \Drupal\Tests\jsonapi\Functional\MessageTest::testRelated()
- 9 core/modules/jsonapi/tests/src/Functional/MessageTest.php \Drupal\Tests\jsonapi\Functional\MessageTest::testRelated()
File
- core/
modules/ jsonapi/ tests/ src/ Functional/ MessageTest.php, line 154
Class
- MessageTest
- JSON:API integration test for the "Message" content entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
public function testRelated() {
// Contact Message entities are not stored, so they cannot be retrieved.
$this
->expectException(RouteNotFoundException::class);
$this
->expectExceptionMessage('Route "jsonapi.contact_message--camelids.related" does not exist.');
Url::fromRoute('jsonapi.contact_message--camelids.related')
->toString(TRUE);
}