function TestRunnerKernel::discoverServiceProviders
Overrides DrupalKernel::discoverServiceProviders
File
-
core/
lib/ Drupal/ Core/ Test/ TestRunnerKernel.php, line 97
Class
- TestRunnerKernel
- Defines a kernel used for running Functional tests and run-tests.sh.
Namespace
Drupal\Core\TestCode
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';
return $this->serviceProviderClasses;
}