function LanguagePluginTest::testGetDynamicPluginConfig
Same name in other branches
- 9 core/modules/ckeditor5/tests/src/Unit/LanguagePluginTest.php \Drupal\Tests\ckeditor5\Unit\LanguagePluginTest::testGetDynamicPluginConfig()
- 11.x core/modules/ckeditor5/tests/src/Unit/LanguagePluginTest.php \Drupal\Tests\ckeditor5\Unit\LanguagePluginTest::testGetDynamicPluginConfig()
@covers ::getDynamicPluginConfig @dataProvider providerGetDynamicPluginConfig
File
-
core/
modules/ ckeditor5/ tests/ src/ Unit/ LanguagePluginTest.php, line 125
Class
- LanguagePluginTest
- @coversDefaultClass \Drupal\ckeditor5\Plugin\CKEditor5Plugin\Language @group ckeditor5 @internal
Namespace
Drupal\Tests\ckeditor5\UnitCode
public function testGetDynamicPluginConfig(array $configuration, array $expected_dynamic_config) : void {
$route_provider = $this->prophesize(RouteProviderInterface::class);
$language_manager = $this->prophesize(LanguageManagerInterface::class);
$language_manager->getLanguages()
->willReturn([
new LanguageLanguage([
'id' => 'de',
'name' => 'German',
]),
new LanguageLanguage([
'id' => 'ar',
'name' => 'Arabic',
'direction' => 'rtl',
]),
]);
$plugin = new Language($configuration, 'ckeditor5_language', new CKEditor5PluginDefinition([
'id' => 'IRRELEVANT-FOR-A-UNIT-TEST',
]), $language_manager->reveal(), $route_provider->reveal());
$dynamic_config = $plugin->getDynamicPluginConfig([], $this->prophesize(EditorInterface::class)
->reveal());
$this->assertSame($expected_dynamic_config, $dynamic_config);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.