Security update for Core, with self-updated composer
[yaffs-website] / web / core / tests / Drupal / KernelTests / Core / Config / SchemaConfigListenerTest.php
1 <?php
2
3 namespace Drupal\KernelTests\Core\Config;
4
5 use Drupal\KernelTests\KernelTestBase;
6 use Drupal\Tests\Traits\Core\Config\SchemaConfigListenerTestTrait;
7
8 /**
9  * Tests the functionality of ConfigSchemaChecker in KernelTestBase tests.
10  *
11  * @group config
12  */
13 class SchemaConfigListenerTest extends KernelTestBase {
14
15   use SchemaConfigListenerTestTrait;
16
17   /**
18    * {@inheritdoc}
19    */
20   public static $modules = ['config_test'];
21
22   /**
23    * {@inheritdoc}
24    */
25   protected function setUp() {
26     parent::setUp();
27     // Install configuration provided by the module so that the order of the
28     // config keys is the same as
29     // \Drupal\FunctionalTests\Core\Config\SchemaConfigListenerTest.
30     $this->installConfig(['config_test']);
31   }
32
33 }