You are here

protected static property TestBase::$configSchemaCheckerExclusions in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/simpletest/src/TestBase.php \Drupal\simpletest\TestBase::configSchemaCheckerExclusions

An array of config object names that are excluded from schema checking.

Type: string[]

File

core/modules/simpletest/src/TestBase.php, line 302
Contains \Drupal\simpletest\TestBase.

Class

TestBase
Base class for Drupal tests.

Namespace

Drupal\simpletest

Code

protected static $configSchemaCheckerExclusions = array(
  // Following are used to test lack of or partial schema. Where partial
  // schema is provided, that is explicitly tested in specific tests.
  'config_schema_test.noschema',
  'config_schema_test.someschema',
  'config_schema_test.schema_data_types',
  'config_schema_test.no_schema_data_types',
  // Used to test application of schema to filtering of configuration.
  'config_test.dynamic.system',
);