You are here

protected function DrupalRemoteTestCase::resetUrl in SimpleTest 7.2

Reset the remote URL base to the value in 'simpletest_remote_url'.

File

./drupal_web_test_case.php, line 3686
Provides DrupalTestCase, DrupalUnitTestCase, and DrupalWebTestCase classes.

Class

DrupalRemoteTestCase
Base class used for writing atomic remote tests.

Code

protected function resetUrl() {
  $this
    ->setUrl(variable_get('simpletest_remote_url', FALSE));
}