function SearchTestBase::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 Drupal\simpletest\WebTestBase::$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 WebTestBase::setUp

See also

Drupal\simpletest\WebTestBase::prepareDatabasePrefix()

Drupal\simpletest\WebTestBase::changeDatabasePrefix()

Drupal\simpletest\WebTestBase::prepareEnvironment()

15 calls to SearchTestBase::setUp()
SearchAdvancedSearchFormTest::setUp in drupal/core/modules/search/lib/Drupal/search/Tests/SearchAdvancedSearchFormTest.php
Sets up a Drupal site for running functional and integration tests.
SearchBlockTest::setUp in drupal/core/modules/search/lib/Drupal/search/Tests/SearchBlockTest.php
Sets up a Drupal site for running functional and integration tests.
SearchCommentCountToggleTest::setUp in drupal/core/modules/search/lib/Drupal/search/Tests/SearchCommentCountToggleTest.php
Sets up a Drupal site for running functional and integration tests.
SearchCommentTest::setUp in drupal/core/modules/search/lib/Drupal/search/Tests/SearchCommentTest.php
Sets up a Drupal site for running functional and integration tests.
SearchConfigSettingsFormTest::setUp in drupal/core/modules/search/lib/Drupal/search/Tests/SearchConfigSettingsFormTest.php
Sets up a Drupal site for running functional and integration tests.

... See full list

15 methods override SearchTestBase::setUp()
SearchAdvancedSearchFormTest::setUp in drupal/core/modules/search/lib/Drupal/search/Tests/SearchAdvancedSearchFormTest.php
Sets up a Drupal site for running functional and integration tests.
SearchBlockTest::setUp in drupal/core/modules/search/lib/Drupal/search/Tests/SearchBlockTest.php
Sets up a Drupal site for running functional and integration tests.
SearchCommentCountToggleTest::setUp in drupal/core/modules/search/lib/Drupal/search/Tests/SearchCommentCountToggleTest.php
Sets up a Drupal site for running functional and integration tests.
SearchCommentTest::setUp in drupal/core/modules/search/lib/Drupal/search/Tests/SearchCommentTest.php
Sets up a Drupal site for running functional and integration tests.
SearchConfigSettingsFormTest::setUp in drupal/core/modules/search/lib/Drupal/search/Tests/SearchConfigSettingsFormTest.php
Sets up a Drupal site for running functional and integration tests.

... See full list

File

drupal/core/modules/search/lib/Drupal/search/Tests/SearchTestBase.php, line 21
Definition of Drupal\search\Tests\SearchTestBase.

Class

SearchTestBase

Namespace

Drupal\search\Tests

Code

function setUp() {
  parent::setUp();

  // Create Basic page and Article node types.
  if ($this->profile != 'standard') {
    $this
      ->drupalCreateContentType(array(
      'type' => 'page',
      'name' => 'Basic page',
    ));
    $this
      ->drupalCreateContentType(array(
      'type' => 'article',
      'name' => 'Article',
    ));
  }
}