function DrupalKernelTest::providerClassLoaderAutoDetect
Same name in other branches
- 9 core/tests/Drupal/KernelTests/Core/DrupalKernel/DrupalKernelTest.php \Drupal\KernelTests\Core\DrupalKernel\DrupalKernelTest::providerClassLoaderAutoDetect()
- 10 core/tests/Drupal/KernelTests/Core/DrupalKernel/DrupalKernelTest.php \Drupal\KernelTests\Core\DrupalKernel\DrupalKernelTest::providerClassLoaderAutoDetect()
Data provider for self::testClassLoaderAutoDetect.
Return value
array An array of test cases. Each test case is an array containing a single boolean value that represents the class_loader_auto_detect setting to be tested.
File
-
core/
tests/ Drupal/ KernelTests/ Core/ DrupalKernel/ DrupalKernelTest.php, line 211
Class
- DrupalKernelTest
- Tests DIC compilation to disk.
Namespace
Drupal\KernelTests\Core\DrupalKernelCode
public static function providerClassLoaderAutoDetect() {
return [
'TRUE' => [
TRUE,
],
'FALSE' => [
FALSE,
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.