function TimestampNormalizerTest::testSupportsNormalization

Same name and namespace in other branches
  1. 9 core/modules/serialization/tests/src/Unit/Normalizer/TimestampNormalizerTest.php \Drupal\Tests\serialization\Unit\Normalizer\TimestampNormalizerTest::testSupportsNormalization()
  2. 8.9.x core/modules/serialization/tests/src/Unit/Normalizer/TimestampNormalizerTest.php \Drupal\Tests\serialization\Unit\Normalizer\TimestampNormalizerTest::testSupportsNormalization()
  3. 11.x core/modules/serialization/tests/src/Unit/Normalizer/TimestampNormalizerTest.php \Drupal\Tests\serialization\Unit\Normalizer\TimestampNormalizerTest::testSupportsNormalization()

@covers ::supportsNormalization

File

core/modules/serialization/tests/src/Unit/Normalizer/TimestampNormalizerTest.php, line 52

Class

TimestampNormalizerTest
Unit test coverage for the "Timestamp" @DataType.

Namespace

Drupal\Tests\serialization\Unit\Normalizer

Code

public function testSupportsNormalization() : void {
  $this->assertTrue($this->normalizer
    ->supportsNormalization($this->data
    ->reveal()));
  $integer = $this->prophesize(IntegerData::class);
  $this->assertFalse($this->normalizer
    ->supportsNormalization($integer->reveal()));
  $datetime = $this->prophesize(DateTimeInterface::class);
  $this->assertFalse($this->normalizer
    ->supportsNormalization($datetime->reveal()));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.