You are here

public function EntityResourceTest::testPatchIndividualFailedConfig in JSON:API Extras 8.2

Same name and namespace in other branches
  1. 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\Controller

Code

public function testPatchIndividualFailedConfig($values) {
  $this
    ->setExpectedException(ConfigException::class);
  $this
    ->testPatchIndividualConfig($values);
}