function ListPluginTest::testGetDynamicPluginConfig

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

@covers ::getDynamicPluginConfig

@dataProvider providerGetDynamicPluginConfig

File

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

Class

ListPluginTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21ckeditor5%21src%21Plugin%21CKEditor5Plugin%21ListPlugin.php/class/ListPlugin/10" title="CKEditor 5 List plugin." class="local">\Drupal\ckeditor5\Plugin\CKEditor5Plugin\ListPlugin</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_list']['ckeditor5']['config'];
    $plugin = new ListPlugin($configuration, 'ckeditor5_list', NULL);
    $dynamic_plugin_config = $plugin->getDynamicPluginConfig($static_plugin_config, $this->prophesize(Editor::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.