function ConfigNamesMapperTest::providerTestHasSchema

Same name and namespace in other branches
  1. 9 core/modules/config_translation/tests/src/Unit/ConfigNamesMapperTest.php \Drupal\Tests\config_translation\Unit\ConfigNamesMapperTest::providerTestHasSchema()
  2. 8.9.x core/modules/config_translation/tests/src/Unit/ConfigNamesMapperTest.php \Drupal\Tests\config_translation\Unit\ConfigNamesMapperTest::providerTestHasSchema()
  3. 10 core/modules/config_translation/tests/src/Unit/ConfigNamesMapperTest.php \Drupal\Tests\config_translation\Unit\ConfigNamesMapperTest::providerTestHasSchema()

Provides data for ConfigMapperTest::testHasSchema().

Return value

array An array of arrays, where each inner array has an array of values that the mocked locale configuration manager should return for hasConfigSchema() as the first value and the expected return value of ConfigNamesMapper::hasSchema() as the second value.

File

core/modules/config_translation/tests/src/Unit/ConfigNamesMapperTest.php, line 526

Class

ConfigNamesMapperTest
Tests the functionality provided by the configuration names mapper.

Namespace

Drupal\Tests\config_translation\Unit

Code

public static function providerTestHasSchema() {
    return [
        [
            [
                TRUE,
            ],
            TRUE,
        ],
        [
            [
                FALSE,
            ],
            FALSE,
        ],
        [
            [
                TRUE,
                TRUE,
                TRUE,
            ],
            TRUE,
        ],
        [
            [
                TRUE,
                FALSE,
                TRUE,
            ],
            FALSE,
        ],
    ];
}

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