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