You are here

protected function MigrateDrupal7TestBase::setUp in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/migrate_drupal/src/Tests/d7/MigrateDrupal7TestBase.php \Drupal\migrate_drupal\Tests\d7\MigrateDrupal7TestBase::setUp()

Performs setup tasks before each individual test method is run.

Overrides MigrateDrupalTestBase::setUp

56 calls to MigrateDrupal7TestBase::setUp()
MigrateAggregatorFeedTest::setUp in core/modules/aggregator/src/Tests/Migrate/d7/MigrateAggregatorFeedTest.php
Performs setup tasks before each individual test method is run.
MigrateAggregatorItemTest::setUp in core/modules/aggregator/src/Tests/Migrate/d7/MigrateAggregatorItemTest.php
Performs setup tasks before each individual test method is run.
MigrateAggregatorSettingsTest::setUp in core/modules/aggregator/src/Tests/Migrate/d7/MigrateAggregatorSettingsTest.php
Performs setup tasks before each individual test method is run.
MigrateBlockContentBodyFieldTest::setUp in core/modules/block_content/src/Tests/Migrate/MigrateBlockContentBodyFieldTest.php
Performs setup tasks before each individual test method is run.
MigrateBlockContentTypeTest::setUp in core/modules/block_content/src/Tests/Migrate/MigrateBlockContentTypeTest.php
Performs setup tasks before each individual test method is run.

... See full list

56 methods override MigrateDrupal7TestBase::setUp()
MigrateAggregatorFeedTest::setUp in core/modules/aggregator/src/Tests/Migrate/d7/MigrateAggregatorFeedTest.php
Performs setup tasks before each individual test method is run.
MigrateAggregatorItemTest::setUp in core/modules/aggregator/src/Tests/Migrate/d7/MigrateAggregatorItemTest.php
Performs setup tasks before each individual test method is run.
MigrateAggregatorSettingsTest::setUp in core/modules/aggregator/src/Tests/Migrate/d7/MigrateAggregatorSettingsTest.php
Performs setup tasks before each individual test method is run.
MigrateBlockContentBodyFieldTest::setUp in core/modules/block_content/src/Tests/Migrate/MigrateBlockContentBodyFieldTest.php
Performs setup tasks before each individual test method is run.
MigrateBlockContentTypeTest::setUp in core/modules/block_content/src/Tests/Migrate/MigrateBlockContentTypeTest.php
Performs setup tasks before each individual test method is run.

... See full list

File

core/modules/migrate_drupal/src/Tests/d7/MigrateDrupal7TestBase.php, line 20
Contains \Drupal\migrate_drupal\Tests\d7\MigrateDrupal7TestBase.

Class

MigrateDrupal7TestBase
Base class for Drupal 7 migration tests.

Namespace

Drupal\migrate_drupal\Tests\d7

Code

protected function setUp() {
  parent::setUp();
  $this
    ->loadFixture(__DIR__ . '/../../../tests/fixtures/drupal7.php');
  $this
    ->installMigrations('Drupal 7');
}