You are here

public function SimpletestTestForm::__construct in SimpleTest 8.3

Constructs a new SimpletestTestForm.

Parameters

\Drupal\Core\Render\RendererInterface $renderer: The renderer.

\Drupal\simpletest\TestDiscovery $test_discovery: The test discovery service.

File

src/Form/SimpletestTestForm.php, line 50

Class

SimpletestTestForm
List tests arranged in groups that can be selected and run.

Namespace

Drupal\simpletest\Form

Code

public function __construct(RendererInterface $renderer, TestDiscovery $test_discovery) {
  $this->renderer = $renderer;
  $this->testDiscovery = $test_discovery;
}