public function EntityResourceTest::testPatchIndividualFailedConfig in JSON:API Extras 8.2
Same name and namespace in other branches
- 8.3 tests/src/Kernel/Controller/EntityResourceTest.php \Drupal\Tests\jsonapi_extras\Kernel\Controller\EntityResourceTest::testPatchIndividualFailedConfig()
@covers ::patchIndividual @dataProvider patchIndividualConfigFailedProvider
File
- tests/
src/ Kernel/ Controller/ EntityResourceTest.php, line 153
Class
- EntityResourceTest
- @coversDefaultClass \Drupal\jsonapi\Controller\EntityResource @covers \Drupal\jsonapi_extras\Normalizer\ConfigEntityNormalizer @group jsonapi_extras @group legacy
Namespace
Drupal\Tests\jsonapi_extras\Kernel\ControllerCode
public function testPatchIndividualFailedConfig($values) {
$this
->setExpectedException(ConfigException::class);
$this
->testPatchIndividualConfig($values);
}