public function DrupalKernelTest::providerClassLoaderAutoDetect in Drupal 9
Data provider for self::testClassLoaderAutoDetect.
Return value
array
File
- core/
tests/ Drupal/ KernelTests/ Core/ DrupalKernel/ DrupalKernelTest.php, line 210
Class
- DrupalKernelTest
- Tests DIC compilation to disk.
Namespace
Drupal\KernelTests\Core\DrupalKernelCode
public function providerClassLoaderAutoDetect() {
return [
'TRUE' => [
TRUE,
],
'FALSE' => [
FALSE,
],
];
}