public function MessageTest::testPatchIndividual in Drupal 9
Same name and namespace in other branches
- 8 core/modules/jsonapi/tests/src/Functional/MessageTest.php \Drupal\Tests\jsonapi\Functional\MessageTest::testPatchIndividual()
 
Tests PATCHing an individual resource, plus edge cases to ensure good DX.
Overrides ResourceTestBase::testPatchIndividual
File
- core/
modules/ jsonapi/ tests/ src/ Functional/ MessageTest.php, line 132  
Class
- MessageTest
 - JSON:API integration test for the "Message" content entity type.
 
Namespace
Drupal\Tests\jsonapi\FunctionalCode
public function testPatchIndividual() {
  // Contact Message entities are not stored, so they cannot be modified.
  $this
    ->expectException(RouteNotFoundException::class);
  $this
    ->expectExceptionMessage('Route "jsonapi.contact_message--camelids.individual" does not exist.');
  Url::fromRoute('jsonapi.contact_message--camelids.individual')
    ->toString(TRUE);
}