protected function DrupalWebTestCase::cronRun

Runs cron in the Drupal installed by Simpletest.

15 calls to DrupalWebTestCase::cronRun()
CronQueueTestCase::testCallable in drupal/modules/system/system.test
Tests worker defined as a class method callable.
CronQueueTestCase::testExceptions in drupal/modules/system/system.test
Tests that exceptions thrown by workers are handled properly.
CronRunTestCase::testCronExceptions in drupal/modules/system/system.test
Make sure exceptions thrown on hook_cron() don't affect other modules.
CronRunTestCase::testTempFileCleanup in drupal/modules/system/system.test
Ensure that temporary files are removed.
DBLogTestCase::verifyCron in drupal/modules/dblog/dblog.test
Verifies that cron correctly applies the database log row limit.

... See full list

File

drupal/modules/simpletest/drupal_web_test_case.php, line 2380

Class

DrupalWebTestCase
Test case for typical Drupal tests.

Code

protected function cronRun() {
  $this
    ->drupalGet($GLOBALS['base_url'] . '/cron.php', array(
    'external' => TRUE,
    'query' => array(
      'cron_key' => variable_get('cron_key', 'drupal'),
    ),
  ));
}