You are here

function DrupalWebTestCase::__construct in Drupal 7

Constructor for DrupalWebTestCase.

Overrides DrupalTestCase::__construct

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

File

modules/simpletest/drupal_web_test_case.php, line 954

Class

DrupalWebTestCase
Test case for typical Drupal tests.

Code

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