Version 1
[yaffs-website] / web / core / tests / Drupal / FunctionalTests / Core / Config / SchemaConfigListenerTest.php
1 <?php
2
3 namespace Drupal\FunctionalTests\Core\Config;
4
5 use Drupal\Tests\BrowserTestBase;
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 BrowserTestBase {
14
15   use SchemaConfigListenerTestTrait;
16
17   /**
18    * {@inheritdoc}
19    */
20   public static $modules = ['config_test'];
21
22 }