function 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 612 
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);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
