protected function DrupalWebTestCase::resetAll

Reset all data structures after having enabled new modules.

This method is called by DrupalWebTestCase::setUp() after enabling the requested modules. It must be called again when additional modules are enabled later.

10 calls to DrupalWebTestCase::resetAll()
CommentFieldsTest::testCommentEnable in drupal-7.x/modules/comment/comment.test
Test that comment module works when enabled after a content module.
CommentFieldsTest::testCommentEnable in drupal-7.x/modules/comment/comment.test
Test that comment module works when enabled after a content module.
DrupalWebTestCase::setUp in drupal-7.x/modules/simpletest/drupal_web_test_case.php
Sets up a Drupal site for running functional and integration tests.
DrupalWebTestCase::setUp in drupal-7.x/modules/simpletest/drupal_web_test_case.php
Sets up a Drupal site for running functional and integration tests.
ModuleDependencyTestCase::testModuleEnableOrder in drupal-7.x/modules/system/system.test
Tests that module dependencies are enabled in the correct order via the UI. Dependencies should be enabled before their dependents.

... See full list

Archivo

drupal-7.x/modules/simpletest/drupal_web_test_case.php, line 1561

Class

DrupalWebTestCase
Test case for typical Drupal tests.

Código

protected function resetAll() {
  // Reset all static variables.
  drupal_static_reset();
  // Reset the list of enabled modules.
  module_list(TRUE);

  // Reset cached schema for new database prefix. This must be done before
  // drupal_flush_all_caches() so rebuilds can make use of the schema of
  // modules enabled on the cURL side.
  drupal_get_schema(NULL, TRUE);

  // Perform rebuilds and flush remaining caches.
  drupal_flush_all_caches();

  // Reload global $conf array and permissions.
  $this->refreshVariables();
  $this->checkPermissions(array(), TRUE);
}