protected property KernelTestBase::$backupStaticAttributesBlacklist in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/KernelTests/KernelTestBase.php \Drupal\KernelTests\KernelTestBase::backupStaticAttributesBlacklist
- 10 core/tests/Drupal/KernelTests/KernelTestBase.php \Drupal\KernelTests\KernelTestBase::backupStaticAttributesBlacklist
Contains a few static class properties for performance.
File
- core/tests/ Drupal/ KernelTests/ KernelTestBase.php, line 118 
Class
- KernelTestBase
- Base class for functional integration tests.
Namespace
Drupal\KernelTestsCode
protected $backupStaticAttributesBlacklist = [
  // Ignore static discovery/parser caches to speed up tests.
  'Drupal\\Component\\Discovery\\YamlDiscovery' => [
    'parsedFiles',
  ],
  'Drupal\\Core\\DependencyInjection\\YamlFileLoader' => [
    'yaml',
  ],
  'Drupal\\Core\\Extension\\ExtensionDiscovery' => [
    'files',
  ],
  'Drupal\\Core\\Extension\\InfoParser' => [
    'parsedInfos',
  ],
  // Drupal::$container cannot be serialized.
  'Drupal' => [
    'container',
  ],
  // Settings cannot be serialized.
  'Drupal\\Core\\Site\\Settings' => [
    'instance',
  ],
];