MigrateProcessTestCase.php

Same filename in other branches
  1. 9 core/modules/migrate/tests/src/Unit/process/MigrateProcessTestCase.php
  2. 8.9.x core/modules/migrate/tests/src/Unit/process/MigrateProcessTestCase.php
  3. 10 core/modules/migrate/tests/src/Unit/process/MigrateProcessTestCase.php

Namespace

Drupal\Tests\migrate\Unit\process

File

core/modules/migrate/tests/src/Unit/process/MigrateProcessTestCase.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\migrate\Unit\process;

use Drupal\Tests\migrate\Unit\MigrateTestCase;

/**
 * Base class for the Migrate module migrate process unit tests.
 */
abstract class MigrateProcessTestCase extends MigrateTestCase {
    
    /**
     * The migration process plugin.
     *
     * @var \Drupal\migrate\Plugin\MigrateProcessInterface
     */
    protected $plugin;
    
    /**
     * A mock of a process row.
     *
     * @var \Drupal\migrate\Row|\PHPUnit\Framework\MockObject\MockObject
     */
    protected $row;
    
    /**
     * The migration executable or a mock.
     *
     * @var \Drupal\migrate\MigrateExecutable|\PHPUnit\Framework\MockObject\MockObject
     */
    protected $migrateExecutable;
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        $this->row = $this->getMockBuilder('Drupal\\migrate\\Row')
            ->disableOriginalConstructor()
            ->getMock();
        $this->migrateExecutable = $this->getMockBuilder('Drupal\\migrate\\MigrateExecutable')
            ->disableOriginalConstructor()
            ->getMock();
        parent::setUp();
    }

}

Classes

Title Deprecated Summary
MigrateProcessTestCase Base class for the Migrate module migrate process unit tests.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.