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 / ImageFieldTest.php
index 9e9c3fa21c4b8aae2a222b937c790de028631ba9..8606df9e00e44830ef908d0ac030a76aaa812abf 100644 (file)
@@ -32,7 +32,7 @@ class ImageFieldTest extends UnitTestCase {
 
     $migration = $this->prophesize(MigrationInterface::class);
 
-    // The plugin's processFieldValues() method will call
+    // The plugin's defineValueProcessPipeline() method will call
     // mergeProcessOfProperty() and return nothing. So, in order to examine the
     // process pipeline created by the plugin, we need to ensure that
     // getProcess() always returns the last input to mergeProcessOfProperty().
@@ -44,11 +44,12 @@ class ImageFieldTest extends UnitTestCase {
   }
 
   /**
-   * @covers ::processFieldValues
+   * @runInSeparateProcess
+   * @covers ::defineValueProcessPipeline
    * @expectedDeprecation ImageField is deprecated in Drupal 8.5.x and will be removed before Drupal 9.0.x. Use \Drupal\image\Plugin\migrate\field\d7\ImageField instead. See https://www.drupal.org/node/2936061.
    */
-  public function testProcessFieldValues() {
-    $this->plugin->processFieldValues($this->migration, 'somefieldname', []);
+  public function testDefineValueProcessPipeline($method = 'defineValueProcessPipeline') {
+    $this->plugin->$method($this->migration, 'somefieldname', []);
 
     $expected = [
       'plugin' => 'sub_process',