You are here

function simpletest_classloader_register in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/simpletest/simpletest.module \simpletest_classloader_register()

Registers namespaces for disabled modules.

3 calls to simpletest_classloader_register()
SimpletestTestForm::submitForm in core/modules/simpletest/src/Form/SimpletestTestForm.php
Form submission handler.
TestRunnerKernel::boot in core/lib/Drupal/Core/Test/TestRunnerKernel.php
Boots the current kernel.
_simpletest_batch_operation in core/modules/simpletest/simpletest.module
Implements callback_batch_operation().

File

core/modules/simpletest/simpletest.module, line 516
Provides testing functionality.

Code

function simpletest_classloader_register() {
  \Drupal::service('test_discovery')
    ->registerTestNamespaces();
}