public function ActionUpgradePathTest::setUp

Overrides Drupal\simpletest\WebTestBase::setUp() for upgrade testing.

Overrides UpgradePathTestBase::setUp

See also

Drupal\simpletest\WebTestBase::prepareDatabasePrefix()

Drupal\simpletest\WebTestBase::changeDatabasePrefix()

Drupal\simpletest\WebTestBase::prepareEnvironment()

File

drupal/core/modules/system/lib/Drupal/system/Tests/Upgrade/ActionUpgradePathTest.php, line 23
Contains \Drupal\system\Tests\Upgrade\ActionUpgradePathTest.

Class

ActionUpgradePathTest
Tests the upgrade path of actions.

Namespace

Drupal\system\Tests\Upgrade

Code

public function setUp() {

  // Path to the database dump files.
  $this->databaseDumpFiles = array(
    drupal_get_path('module', 'system') . '/tests/upgrade/drupal-7.bare.minimal.database.php.gz',
  );
  parent::setUp();
}