function ConfigNamesMapperTest::testHasSchema
Same name in other branches
- 8.9.x core/modules/config_translation/tests/src/Unit/ConfigNamesMapperTest.php \Drupal\Tests\config_translation\Unit\ConfigNamesMapperTest::testHasSchema()
- 10 core/modules/config_translation/tests/src/Unit/ConfigNamesMapperTest.php \Drupal\Tests\config_translation\Unit\ConfigNamesMapperTest::testHasSchema()
- 11.x core/modules/config_translation/tests/src/Unit/ConfigNamesMapperTest.php \Drupal\Tests\config_translation\Unit\ConfigNamesMapperTest::testHasSchema()
Tests ConfigNamesMapper::hasSchema().
@dataProvider providerTestHasSchema
Parameters
array $mock_return_values: An array of values that the mocked locale configuration manager should return for hasConfigSchema().
bool $expected: The expected return value of ConfigNamesMapper::hasSchema().
File
-
core/
modules/ config_translation/ tests/ src/ Unit/ ConfigNamesMapperTest.php, line 500
Class
- ConfigNamesMapperTest
- Tests the functionality provided by the configuration names mapper.
Namespace
Drupal\Tests\config_translation\UnitCode
public function testHasSchema(array $mock_return_values, $expected) {
// As the configuration names are arbitrary, simply use integers.
$config_names = range(1, count($mock_return_values));
$this->configNamesMapper
->setConfigNames($config_names);
$map = [];
foreach ($config_names as $i => $config_name) {
$map[] = [
$config_name,
$mock_return_values[$i],
];
}
$this->typedConfigManager
->expects($this->any())
->method('hasConfigSchema')
->willReturnMap($map);
$result = $this->configNamesMapper
->hasSchema();
$this->assertSame($expected, $result);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.