Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest::setNameProvider()
  2. 9 core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest::setNameProvider()

Provides config names to test.

See also

\Drupal\Tests\Core\Config\ConfigTest::testSetName()

File

core/tests/Drupal/Tests/Core/Config/ConfigTest.php, line 97

Class

ConfigTest
Tests the Config.

Namespace

Drupal\Tests\Core\Config

Code

public static function setNameProvider() {
  return [
    // Valid name with dot.
    [
      'test.name',
    ],
    // Maximum length.
    [
      'test.' . str_repeat('a', Config::MAX_NAME_LENGTH - 5),
    ],
  ];
}