public function UserUpgradePathNoPasswordTokenTestCase::setUp
Overrides DrupalWebTestCase::setUp() for upgrade testing.
Overrides UpgradePathTestCase::setUp
See also
DrupalWebTestCase::prepareDatabasePrefix()
DrupalWebTestCase::changeDatabasePrefix()
DrupalWebTestCase::prepareEnvironment()
Archivo
- drupal-7.x/
modules/ simpletest/ tests/ upgrade/ upgrade.user.test, line 47
Class
- UserUpgradePathNoPasswordTokenTestCase
- Upgrade test for user.module (password token not involved).
Código
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();
}