protected function KernelTestBase::getConfigSchemaExclusions in Drupal 8
Same name and namespace in other branches
- 9 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 578 
Class
- KernelTestBase
- Base class for functional integration tests.
Namespace
Drupal\KernelTestsCode
protected function getConfigSchemaExclusions() {
  $class = get_class($this);
  $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);
}