MigrateProcessTestCase.php in Drupal 8
File
core/modules/migrate/tests/src/Unit/process/MigrateProcessTestCase.php
View source
<?php
namespace Drupal\Tests\migrate\Unit\process;
use Drupal\Tests\migrate\Unit\MigrateTestCase;
abstract class MigrateProcessTestCase extends MigrateTestCase {
protected $plugin;
protected $row;
protected $migrateExecutable;
protected function setUp() {
$this->row = $this
->getMockBuilder('Drupal\\migrate\\Row')
->disableOriginalConstructor()
->getMock();
$this->migrateExecutable = $this
->getMockBuilder('Drupal\\migrate\\MigrateExecutable')
->disableOriginalConstructor()
->getMock();
parent::setUp();
}
}