public function ConfigTest::setNameProvider in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest::setNameProvider()
- 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 90
Class
- ConfigTest
- Tests the Config.
Namespace
Drupal\Tests\Core\ConfigCode
public function setNameProvider() {
return [
// Valid name with dot.
[
'test.name',
],
// Maximum length.
[
'test.' . str_repeat('a', Config::MAX_NAME_LENGTH - 5),
],
];
}