class MigrateDrupal7TestBase

Same name in this branch
  1. 9 core/modules/migrate_drupal/tests/src/Kernel/d7/MigrateDrupal7TestBase.php \Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase
Same name and namespace in other branches
  1. 10 core/modules/migrate_drupal/tests/src/Kernel/d7/MigrateDrupal7TestBase.php \Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase
  2. 11.x core/modules/migrate_drupal/tests/src/Kernel/d7/MigrateDrupal7TestBase.php \Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase
  3. 8.9.x core/modules/migrate_drupal/tests/src/Kernel/d7/MigrateDrupal7TestBase.php \Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase

Base class for Drupal 7 migration tests.

Hierarchy

Expanded class hierarchy of MigrateDrupal7TestBase

File

core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateDrupal7TestBase.php, line 12

Namespace

Drupal\Tests\aggregator\Kernel\Migrate\d7
View source
abstract class MigrateDrupal7TestBase extends MigrateDrupalTestBase {
  use NodeMigrateTypeTestTrait;
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'aggregator',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    // Add a node classic migrate table to the destination site so that tests
    // run by default with the classic node migrations.
    $this->makeNodeMigrateMapTable(NodeMigrateType::NODE_MIGRATE_TYPE_CLASSIC, '7');
    $this->loadFixture($this->getFixtureFilePath());
  }
  
  /**
   * Gets the path to the fixture file.
   */
  protected function getFixtureFilePath() {
    return __DIR__ . '/../../../../fixtures/drupal7.php';
  }

}

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