You are here

function DrupalUnitTestCase::__construct in SimpleTest 6.2

Same name and namespace in other branches
  1. 7.2 drupal_web_test_case.php \DrupalUnitTestCase::__construct()
  2. 7 drupal_web_test_case.php \DrupalUnitTestCase::__construct()

Constructor for DrupalUnitTestCase.

Overrides DrupalTestCase::__construct

File

./drupal_web_test_case.php, line 651

Class

DrupalUnitTestCase
Test case for Drupal unit tests.

Code

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