fb51066196c12a55c7f17adec0b03bd04564e93d
[yaffs-website] / web / core / modules / datetime / tests / src / Unit / Plugin / migrate / field / DateFieldLegacyTest.php
1 <?php
2
3 namespace Drupal\Tests\datetime\Unit\Plugin\migrate\field;
4
5 /**
6  * @group migrate
7  * @group legacy
8  */
9 class DateFieldLegacyTest extends DateFieldTest {
10
11   /**
12    * @expectedDeprecation Deprecated in Drupal 8.6.0, to be removed before Drupal 9.0.0. Use defineValueProcessPipeline() instead. See https://www.drupal.org/node/2944598.
13    */
14   public function testUnknownDateType($method = 'processFieldValues') {
15     parent::testUnknownDateType($method);
16   }
17
18 }