function LanguagePluginTest::testGetDynamicPluginConfig

Same name and namespace in other branches
  1. 10 core/modules/ckeditor5/tests/src/Unit/LanguagePluginTest.php \Drupal\Tests\ckeditor5\Unit\LanguagePluginTest::testGetDynamicPluginConfig()
  2. 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 103

Class

LanguagePluginTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21ckeditor5%21src%21Plugin%21CKEditor5Plugin%21Language.php/class/Language/9" title="CKEditor 5 Language plugin." class="local">\Drupal\ckeditor5\Plugin\CKEditor5Plugin\Language</a> @group ckeditor5 @internal

Namespace

Drupal\Tests\ckeditor5\Unit

Code

public function testGetDynamicPluginConfig(array $configuration, array $expected_dynamic_config) : void {
    $plugin = new Language($configuration, 'ckeditor5_language', NULL);
    $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.