You are here

function FileEntityTestHelper::setUp in File Entity (fieldable files) 7.3

Same name and namespace in other branches
  1. 7.2 file_entity.test \FileEntityTestHelper::setUp()

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()

10 calls to FileEntityTestHelper::setUp()
FileEntityAccessTestCase::setUp in ./file_entity.test
Sets up a Drupal site for running functional and integration tests.
FileEntityAdminTestCase::setUp in ./file_entity.test
Sets up a Drupal site for running functional and integration tests.
FileEntityAltTitleTestCase::setUp in ./file_entity.test
Sets up a Drupal site for running functional and integration tests.
FileEntityEditTestCase::setUp in ./file_entity.test
Sets up a Drupal site for running functional and integration tests.
FileEntityReplaceTestCase::setUp in ./file_entity.test
Sets up a Drupal site for running functional and integration tests.

... See full list

10 methods override FileEntityTestHelper::setUp()
FileEntityAccessTestCase::setUp in ./file_entity.test
Sets up a Drupal site for running functional and integration tests.
FileEntityAdminTestCase::setUp in ./file_entity.test
Sets up a Drupal site for running functional and integration tests.
FileEntityAltTitleTestCase::setUp in ./file_entity.test
Sets up a Drupal site for running functional and integration tests.
FileEntityEditTestCase::setUp in ./file_entity.test
Sets up a Drupal site for running functional and integration tests.
FileEntityReplaceTestCase::setUp in ./file_entity.test
Sets up a Drupal site for running functional and integration tests.

... See full list

File

./file_entity.test, line 9
Test integration for the file_entity module.

Class

FileEntityTestHelper
@file Test integration for the file_entity module.

Code

function setUp() {
  $modules = func_get_args();
  if (isset($modules[0]) && is_array($modules[0])) {
    $modules = $modules[0];
  }
  $modules[] = 'file_entity';
  parent::setUp($modules);
}