You are here

MigrateDrupal7TestBase.php in Zircon Profile 8

File

core/modules/migrate_drupal/src/Tests/d7/MigrateDrupal7TestBase.php
View 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

Namesort descending Description
MigrateDrupal7TestBase Base class for Drupal 7 migration tests.