Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / file / tests / src / Unit / Plugin / migrate / field / d7 / ImageFieldLegacyTest.php
1 <?php
2
3 namespace Drupal\Tests\file\Unit\Plugin\migrate\field\d7;
4
5 /**
6  * @group legacy
7  * @group file
8  */
9 class ImageFieldLegacyTest extends ImageFieldTest {
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 testDefineValueProcessPipeline($method = 'processFieldValues') {
15     parent::testDefineValueProcessPipeline($method);
16   }
17
18 }