protected function KernelTestBase::getConfigSchemaExclusions in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/KernelTests/KernelTestBase.php \Drupal\KernelTests\KernelTestBase::getConfigSchemaExclusions()
Gets the config schema exclusions for this test.
Return value
string[] An array of config object names that are excluded from schema checking.
File
- core/
tests/ Drupal/ KernelTests/ KernelTestBase.php, line 603
Class
- KernelTestBase
- Base class for functional integration tests.
Namespace
Drupal\KernelTestsCode
protected function getConfigSchemaExclusions() {
$class = static::class;
$exceptions = [];
while ($class) {
if (property_exists($class, 'configSchemaCheckerExclusions')) {
$exceptions = array_merge($exceptions, $class::$configSchemaCheckerExclusions);
}
$class = get_parent_class($class);
}
// Filter out any duplicates.
return array_unique($exceptions);
}