72c2fca6a23e4a52c9633c5cfc54a93174372623
[yaffs-website] / web / core / modules / file / tests / src / Unit / Plugin / migrate / field / d7 / FileFieldLegacyTest.php
1 <?php
2
3 namespace Drupal\Tests\file\Unit\Plugin\migrate\field\d7;
4
5 /**
6  * @coversDefaultClass \Drupal\file\Plugin\migrate\field\d7\FileField
7  * @group legacy
8  * @group file
9  */
10 class FileFieldLegacyTest extends FileFieldTest {
11
12   /**
13    * @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.
14    */
15   public function testDefineValueProcessPipeline($method = 'processFieldValues') {
16     parent::testDefineValueProcessPipeline($method);
17   }
18
19 }