You are here

public function TestRunnerKernel::discoverServiceProviders in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Test/TestRunnerKernel.php \Drupal\Core\Test\TestRunnerKernel::discoverServiceProviders()
  2. 9 core/lib/Drupal/Core/Test/TestRunnerKernel.php \Drupal\Core\Test\TestRunnerKernel::discoverServiceProviders()

File

core/lib/Drupal/Core/Test/TestRunnerKernel.php, line 91

Class

TestRunnerKernel
Kernel for run-tests.sh.

Namespace

Drupal\Core\Test

Code

public function discoverServiceProviders() {
  parent::discoverServiceProviders();

  // The test runner does not require an installed Drupal site to exist.
  // Therefore, its environment is identical to that of the early installer.
  $this->serviceProviderClasses['app']['Test'] = 'Drupal\\Core\\Installer\\InstallerServiceProvider';
}