public function UserUpgradePathNoPasswordTokenTestCase::setUp in Drupal 7
Overrides DrupalWebTestCase::setUp() for upgrade testing.
Overrides UpgradePathTestCase::setUp
See also
DrupalWebTestCase::prepareDatabasePrefix()
DrupalWebTestCase::changeDatabasePrefix()
DrupalWebTestCase::prepareEnvironment()
File
- modules/
simpletest/ tests/ upgrade/ upgrade.user.test, line 47
Class
- UserUpgradePathNoPasswordTokenTestCase
- Upgrade test for user.module (password token not involved).
Code
public function setUp() {
// Path to the database dump files.
$this->databaseDumpFiles = array(
drupal_get_path('module', 'simpletest') . '/tests/upgrade/drupal-6.bare.database.php',
drupal_get_path('module', 'simpletest') . '/tests/upgrade/drupal-6.user-no-password-token.database.php',
);
parent::setUp();
}