public function LanguageTest::providerGetConfig in Drupal 10
Same name and namespace in other branches
- 8 core/modules/ckeditor/tests/src/Unit/Plugin/CKEditorPlugin/LanguageTest.php \Drupal\Tests\ckeditor\Unit\Plugin\CKEditorPlugin\LanguageTest::providerGetConfig()
- 9 core/modules/ckeditor/tests/src/Unit/Plugin/CKEditorPlugin/LanguageTest.php \Drupal\Tests\ckeditor\Unit\Plugin\CKEditorPlugin\LanguageTest::providerGetConfig()
Provides a list of configs to test.
File
- core/
modules/ ckeditor/ tests/ src/ Unit/ Plugin/ CKEditorPlugin/ LanguageTest.php, line 33
Class
- LanguageTest
- @coversDefaultClass \Drupal\ckeditor\Plugin\CKEditorPlugin\Language
Namespace
Drupal\Tests\ckeditor\Unit\Plugin\CKEditorPluginCode
public function providerGetConfig() {
return [
[
'un',
LanguageManager::getUnitedNationsLanguageList(),
],
[
'all',
LanguageManager::getStandardLanguageList(),
],
];
}