function DrupalWebTestCase::__construct

Constructor for DrupalWebTestCase.

Overrides DrupalTestCase::__construct

1 call to DrupalWebTestCase::__construct()
UpgradePathTestCase::__construct in drupal/modules/simpletest/tests/upgrade/upgrade.test
Constructs an UpgradePathTestCase object.
1 method overrides DrupalWebTestCase::__construct()
UpgradePathTestCase::__construct in drupal/modules/simpletest/tests/upgrade/upgrade.test
Constructs an UpgradePathTestCase object.

File

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

Class

DrupalWebTestCase
Test case for typical Drupal tests.

Code

function __construct($test_id = NULL) {
  parent::__construct($test_id);
  $this->skipClasses[__CLASS__] = TRUE;
}