Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / link / tests / src / Kernel / Plugin / migrate / cckfield / d7 / LinkCckDeprecationTest.php
diff --git a/web/core/modules/link/tests/src/Kernel/Plugin/migrate/cckfield/d7/LinkCckDeprecationTest.php b/web/core/modules/link/tests/src/Kernel/Plugin/migrate/cckfield/d7/LinkCckDeprecationTest.php
new file mode 100644 (file)
index 0000000..97a3892
--- /dev/null
@@ -0,0 +1,18 @@
+<?php
+
+namespace Drupal\Tests\link\Kernel\Plugin\migrate\cckfield\d7;
+
+/**
+ * @group link
+ * @group legacy
+ */
+class LinkCckDeprecationTest extends LinkCckTest {
+
+  /**
+   * @expectedDeprecation Deprecated in Drupal 8.6.0, to be removed before Drupal 9.0.0. Use alterFieldInstanceMigration() instead. See https://www.drupal.org/node/2944598.
+   */
+  public function testAlterFieldInstanceMigration($method = 'processFieldInstance') {
+    parent::testAlterFieldInstanceMigration($method);
+  }
+
+}