You are here

public function ContentEntityNormalizerTest::testDenormalize in Acquia Content Hub 8

Test the denormalize method.

@covers ::denormalize

File

tests/src/Unit/Normalizer/ContentEntityNormalizerTest.php, line 775

Class

ContentEntityNormalizerTest
PHPUnit test for the ContentEntityNormalizer class.

Namespace

Drupal\Tests\acquia_contenthub\Unit\Normalizer

Code

public function testDenormalize() {
  $denormalized = $this->contentEntityNormalizer
    ->denormalize(NULL, NULL);
  $this
    ->assertNull($denormalized);
}