function KernelTestBase::getConfigSchemaExclusions

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/KernelTestBase.php \Drupal\KernelTests\KernelTestBase::getConfigSchemaExclusions()
  2. 8.9.x core/tests/Drupal/KernelTests/KernelTestBase.php \Drupal\KernelTests\KernelTestBase::getConfigSchemaExclusions()
  3. 10 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 618

Class

KernelTestBase
Base class for functional integration tests.

Namespace

Drupal\KernelTests

Code

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.