MigrateDrupal7TestBase.php in Zircon Profile 8
Same filename and directory in other branches
Namespace
Drupal\migrate_drupal\Tests\d7File
core/modules/migrate_drupal/src/Tests/d7/MigrateDrupal7TestBase.phpView source
<?php
/**
* @file
* Contains \Drupal\migrate_drupal\Tests\d7\MigrateDrupal7TestBase.
*/
namespace Drupal\migrate_drupal\Tests\d7;
use Drupal\migrate_drupal\Tests\MigrateDrupalTestBase;
/**
* Base class for Drupal 7 migration tests.
*/
abstract class MigrateDrupal7TestBase extends MigrateDrupalTestBase {
/**
* {@inheritdoc}
*/
protected function setUp() {
parent::setUp();
$this
->loadFixture(__DIR__ . '/../../../tests/fixtures/drupal7.php');
$this
->installMigrations('Drupal 7');
}
}
Classes
Name | Description |
---|---|
MigrateDrupal7TestBase | Base class for Drupal 7 migration tests. |