function ListPluginTest::providerGetDynamicPluginConfig

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

Provides a list of configs to test.

File

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

Class

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

Namespace

Drupal\Tests\ckeditor5\Unit

Code

public function providerGetDynamicPluginConfig() : array {
    return [
        'startIndex is false' => [
            [
                'reversed' => TRUE,
                'startIndex' => FALSE,
            ],
            [
                'list' => [
                    'properties' => [
                        'reversed' => TRUE,
                        'startIndex' => FALSE,
                        'styles' => FALSE,
                    ],
                ],
            ],
        ],
        'reversed is false' => [
            [
                'reversed' => FALSE,
                'startIndex' => TRUE,
            ],
            [
                'list' => [
                    'properties' => [
                        'reversed' => FALSE,
                        'startIndex' => TRUE,
                        'styles' => FALSE,
                    ],
                ],
            ],
        ],
        'both disabled' => [
            [
                'reversed' => FALSE,
                'startIndex' => FALSE,
            ],
            [
                'list' => [
                    'properties' => [
                        'reversed' => FALSE,
                        'startIndex' => FALSE,
                        'styles' => FALSE,
                    ],
                ],
            ],
        ],
        'both enabled' => [
            [
                'reversed' => TRUE,
                'startIndex' => TRUE,
            ],
            [
                'list' => [
                    'properties' => [
                        'reversed' => TRUE,
                        'startIndex' => TRUE,
                        'styles' => FALSE,
                    ],
                ],
            ],
        ],
    ];
}

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