function HeadingPluginTest::testGetDynamicPluginConfig

Same name and namespace in other branches
  1. 9 core/modules/ckeditor5/tests/src/Unit/HeadingPluginTest.php \Drupal\Tests\ckeditor5\Unit\HeadingPluginTest::testGetDynamicPluginConfig()
  2. 10 core/modules/ckeditor5/tests/src/Unit/HeadingPluginTest.php \Drupal\Tests\ckeditor5\Unit\HeadingPluginTest::testGetDynamicPluginConfig()

@covers ::getDynamicPluginConfig @dataProvider providerGetDynamicPluginConfig

File

core/modules/ckeditor5/tests/src/Unit/HeadingPluginTest.php, line 108

Class

HeadingPluginTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21ckeditor5%21src%21Plugin%21CKEditor5Plugin%21Language.php/class/Language/11.x" 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 {
    // Read the CKEditor 5 plugin's static configuration from YAML.
    $ckeditor5_plugin_definitions = Yaml::parseFile(__DIR__ . '/../../../ckeditor5.ckeditor5.yml');
    $static_plugin_config = $ckeditor5_plugin_definitions['ckeditor5_heading']['ckeditor5']['config'];
    $plugin = new Heading($configuration, 'ckeditor5_heading', NULL);
    $dynamic_plugin_config = $plugin->getDynamicPluginConfig($static_plugin_config, $this->prophesize(EditorInterface::class)
        ->reveal());
    $this->assertSame($expected_dynamic_config, $dynamic_plugin_config);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.