You are here

public function KernelTestBase::__construct in Drupal 8

Constructor for Test.

Parameters

$test_id: Tests with the same id are reported together.

Overrides TestBase::__construct

File

core/modules/simpletest/src/KernelTestBase.php, line 122

Class

KernelTestBase
Base class for functional integration tests.

Namespace

Drupal\simpletest

Code

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