function TimestampNormalizerTest::testNormalize
Same name in other branches
- 9 core/modules/serialization/tests/src/Unit/Normalizer/TimestampNormalizerTest.php \Drupal\Tests\serialization\Unit\Normalizer\TimestampNormalizerTest::testNormalize()
- 8.9.x core/modules/serialization/tests/src/Unit/Normalizer/TimestampNormalizerTest.php \Drupal\Tests\serialization\Unit\Normalizer\TimestampNormalizerTest::testNormalize()
- 10 core/modules/serialization/tests/src/Unit/Normalizer/TimestampNormalizerTest.php \Drupal\Tests\serialization\Unit\Normalizer\TimestampNormalizerTest::testNormalize()
@covers ::normalize
File
-
core/
modules/ serialization/ tests/ src/ Unit/ Normalizer/ TimestampNormalizerTest.php, line 72
Class
- TimestampNormalizerTest
- Unit test coverage for the "Timestamp" @DataType.
Namespace
Drupal\Tests\serialization\Unit\NormalizerCode
public function testNormalize() : void {
$random_rfc_3339_string = $this->randomMachineName();
$drupal_date_time = $this->prophesize(TimestampNormalizerTestDrupalDateTime::class);
$drupal_date_time->setTimezone(new \DateTimeZone('UTC'))
->willReturn($drupal_date_time->reveal());
$drupal_date_time->format(\DateTime::RFC3339)
->willReturn($random_rfc_3339_string);
$this->data
->getDateTime()
->willReturn($drupal_date_time->reveal());
$normalized = $this->normalizer
->normalize($this->data
->reveal());
$this->assertSame($random_rfc_3339_string, $normalized);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.