function DrupalWebTestCase::__construct

7.x drupal_web_test_case.php DrupalWebTestCase::__construct($test_id = NULL)

Constructor for DrupalWebTestCase.

Overrides DrupalTestCase::__construct

File

drupal-7.x/modules/simpletest/drupal_web_test_case.php, line 897

Class

DrupalWebTestCase
Test case for typical Drupal tests.

Code

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