function JsonApiDocumentTopLevelNormalizerTest::testDenormalize
@covers ::denormalize
@dataProvider denormalizeProvider
File
-
core/
modules/ jsonapi/ tests/ src/ Unit/ Normalizer/ JsonApiDocumentTopLevelNormalizerTest.php, line 91
Class
- JsonApiDocumentTopLevelNormalizerTest
- @coversDefaultClass \Drupal\jsonapi\Normalizer\JsonApiDocumentTopLevelNormalizer[[api-linebreak]] @group jsonapi
Namespace
Drupal\Tests\jsonapi\Unit\NormalizerCode
public function testDenormalize($input, $expected) {
$resource_type = new ResourceType('node', 'article', FieldableEntityInterface::class);
$resource_type->setRelatableResourceTypes([]);
$context = [
'resource_type' => $resource_type,
];
$denormalized = $this->normalizer
->denormalize($input, NULL, 'api_json', $context);
$this->assertSame($expected, $denormalized);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.