You are here

function LanguageHierarchyBaseTestCase::setUp in Language Hierarchy 7

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

Generates a random database prefix and installs Drupal with the specified installation profile in DrupalWebTestCase::$profile into the prefixed database. Afterwards, installs any additional modules specified by the test.

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.

Parameters

...: List of modules to enable for the duration of the test. This can be either a single array or a variable number of string arguments.

Overrides DrupalWebTestCase::setUp

See also

DrupalWebTestCase::prepareDatabasePrefix()

DrupalWebTestCase::changeDatabasePrefix()

DrupalWebTestCase::prepareEnvironment()

4 calls to LanguageHierarchyBaseTestCase::setUp()
LanguageHierarchyI18nStringTranslationWebTestCase::setUp in tests/language_hierarchy.test
Sets up a Drupal site for running functional and integration tests.
LanguageHierarchyI18nVariableTranslationWebTestCase::setUp in modules/i18n_variable_hierarchy/i18n_variable_hierarchy.test
Sets up a Drupal site for running functional and integration tests.
LanguageHierarchyStringTranslationWebTestCase::setUp in tests/language_hierarchy.test
Sets up a Drupal site for running functional and integration tests.
MenuTranslationHierarchyWebTestCase::setUp in modules/i18n_menu_hierarchy/tests/i18n_menu_hierarchy.test
Sets up a Drupal site for running functional and integration tests.
5 methods override LanguageHierarchyBaseTestCase::setUp()
EntityTranslationHierarchyBaseTestCase::setUp in modules/entity_translation_hierarchy/tests/entity_translation_hierarchy.test
Sets up a Drupal site for running functional and integration tests.
LanguageHierarchyI18nStringTranslationWebTestCase::setUp in tests/language_hierarchy.test
Sets up a Drupal site for running functional and integration tests.
LanguageHierarchyI18nVariableTranslationWebTestCase::setUp in modules/i18n_variable_hierarchy/i18n_variable_hierarchy.test
Sets up a Drupal site for running functional and integration tests.
LanguageHierarchyStringTranslationWebTestCase::setUp in tests/language_hierarchy.test
Sets up a Drupal site for running functional and integration tests.
MenuTranslationHierarchyWebTestCase::setUp in modules/i18n_menu_hierarchy/tests/i18n_menu_hierarchy.test
Sets up a Drupal site for running functional and integration tests.

File

tests/language_hierarchy.test, line 36
Tests for Language Hierarchy module.

Class

LanguageHierarchyBaseTestCase
Base class for Language Hierarchy module tests.

Code

function setUp() {
  $args = func_get_args();
  call_user_func_array(array(
    'parent',
    'setUp',
  ), $args);

  // Reset user fields to make test object reusable.
  unset($this->current_user);
  unset($this->admin_user);
  unset($this->translator_user);
}