function DrupalWebTestCase::__construct
Constructor for DrupalWebTestCase.
Overrides DrupalTestCase::__construct
2 calls to DrupalWebTestCase::__construct()
- UpgradePathTestCase::__construct in drupal-7.x/
modules/ simpletest/ tests/ upgrade/ upgrade.test - Constructs an UpgradePathTestCase object.
- UpgradePathTestCase::__construct in drupal-7.x/
modules/ simpletest/ tests/ upgrade/ upgrade.test - Constructs an UpgradePathTestCase object.
1 method overrides DrupalWebTestCase::__construct()
- UpgradePathTestCase::__construct in drupal-7.x/
modules/ simpletest/ tests/ upgrade/ upgrade.test - Constructs an UpgradePathTestCase object.
Archivo
- drupal-7.x/
modules/ simpletest/ drupal_web_test_case.php, line 884
Class
- DrupalWebTestCase
- Test case for typical Drupal tests.
Código
function __construct($test_id = NULL) {
parent::__construct($test_id);
$this->skipClasses[__CLASS__] = TRUE;
}