You are here

public function SelectOrOtherTestBase::setUp in Select (or other) 7.3

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 SelectOrOtherTestBase::setUp()
SelectOrOtherAdminTestCase::setUp in tests/select_or_other_admin.test
Sets up a Drupal site for running functional and integration tests.
SelectOrOtherNumberTestCase::setUp in tests/select_or_other_number.test
Sets up a Drupal site for running functional and integration tests.
SelectOrOtherTaxonomyTestCase::setUp in modules/select_or_other_taxonomy/tests/select_or_other_taxonomy.test
Sets up a Drupal site for running functional and integration tests.
SelectOrOtherTextTestCase::setUp in tests/select_or_other_text.test
Sets up a Drupal site for running functional and integration tests.
4 methods override SelectOrOtherTestBase::setUp()
SelectOrOtherAdminTestCase::setUp in tests/select_or_other_admin.test
Sets up a Drupal site for running functional and integration tests.
SelectOrOtherNumberTestCase::setUp in tests/select_or_other_number.test
Sets up a Drupal site for running functional and integration tests.
SelectOrOtherTaxonomyTestCase::setUp in modules/select_or_other_taxonomy/tests/select_or_other_taxonomy.test
Sets up a Drupal site for running functional and integration tests.
SelectOrOtherTextTestCase::setUp in tests/select_or_other_text.test
Sets up a Drupal site for running functional and integration tests.

File

tests/SelectOrOtherTestBase.test, line 26
Contains SelectOrOtherTestBase.

Class

SelectOrOtherTestBase
Class SelectOrOtherTestBase Base class for select_or_other testing.

Code

public function setUp() {

  // Also enable any modules required by the tests overriding this base class.
  $modules = func_get_args();
  if (isset($modules[0]) && is_array($modules[0])) {
    $modules = $modules[0];
  }

  // At the very least enable the select_or_other module.
  parent::setUp(array_merge(array(
    'select_or_other',
  ), $modules));

  // Clear the array of fields to test.
  $this->fields = array();
}