protected function TimestampNormalizerTest::setUp in Drupal 9
Same name and namespace in other branches
- 8 core/modules/serialization/tests/src/Unit/Normalizer/TimestampNormalizerTest.php \Drupal\Tests\serialization\Unit\Normalizer\TimestampNormalizerTest::setUp()
Overrides UnitTestCase::setUp
File
- core/
modules/ serialization/ tests/ src/ Unit/ Normalizer/ TimestampNormalizerTest.php, line 40
Class
- TimestampNormalizerTest
- Unit test coverage for the "Timestamp" @DataType.
Namespace
Drupal\Tests\serialization\Unit\NormalizerCode
protected function setUp() : void {
parent::setUp();
$this->normalizer = new TimestampNormalizer($this
->prophesize(ConfigFactoryInterface::class)
->reveal());
$this->data = $this
->prophesize(Timestamp::class);
}