Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / migrate / tests / src / Unit / process / MigrateProcessTestCase.php
1 <?php
2
3 namespace Drupal\Tests\migrate\Unit\process;
4
5 use Drupal\Tests\migrate\Unit\MigrateTestCase;
6
7 abstract class MigrateProcessTestCase extends MigrateTestCase {
8
9   /**
10    * @var \Drupal\migrate\Plugin\MigrateProcessInterface
11    */
12   protected $plugin;
13
14   /**
15    * @var \Drupal\migrate\Row
16    */
17   protected $row;
18
19   /**
20    * @var \Drupal\migrate\MigrateExecutable|\PHPUnit_Framework_MockObject_MockObject
21    */
22   protected $migrateExecutable;
23
24   /**
25    * {@inheritdoc}
26    */
27   protected function setUp() {
28     $this->row = $this->getMockBuilder('Drupal\migrate\Row')
29       ->disableOriginalConstructor()
30       ->getMock();
31     $this->migrateExecutable = $this->getMockBuilder('Drupal\migrate\MigrateExecutable')
32       ->disableOriginalConstructor()
33       ->getMock();
34
35     parent::setUp();
36   }
37
38 }