You are here

protected function MigrateUpgradeTestBase::setUp in Migrate Upgrade 8

Sets up a Drupal site for running functional and integration tests.

Installs Drupal with the installation profile specified in \Drupal\simpletest\WebTestBase::$profile into the prefixed database.

Afterwards, installs any additional modules specified in the static \Drupal\simpletest\WebTestBase::$modules property of each class in the class hierarchy.

After installation all caches are flushed and several configuration values are reset to the values of the parent site executing the test, since the default values may be incompatible with the environment in which tests are being executed.

Overrides WebTestBase::setUp

2 calls to MigrateUpgradeTestBase::setUp()
MigrateUpgrade6Test::setUp in src/Tests/d6/MigrateUpgrade6Test.php
Sets up a Drupal site for running functional and integration tests.
MigrateUpgrade7Test::setUp in src/Tests/d7/MigrateUpgrade7Test.php
Sets up a Drupal site for running functional and integration tests.
2 methods override MigrateUpgradeTestBase::setUp()
MigrateUpgrade6Test::setUp in src/Tests/d6/MigrateUpgrade6Test.php
Sets up a Drupal site for running functional and integration tests.
MigrateUpgrade7Test::setUp in src/Tests/d7/MigrateUpgrade7Test.php
Sets up a Drupal site for running functional and integration tests.

File

src/Tests/MigrateUpgradeTestBase.php, line 40
Contains \Drupal\migrate_upgrade\Tests\MigrateUpgradeTestBase.

Class

MigrateUpgradeTestBase
Provides a base class for testing migration upgrades in the UI.

Namespace

Drupal\migrate_upgrade\Tests

Code

protected function setUp() {
  parent::setUp();
  $this
    ->createMigrationConnection();
  $this->sourceDatabase = Database::getConnection('default', 'migrate_upgrade');

  // Create and log in as user 1. Migrations in the UI can only be performed
  // as user 1.
  $this
    ->drupalLogin($this->rootUser);
}