public function ConfigTest::testSetValue in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Config/ConfigTest.php \Drupal\Tests\Core\Config\ConfigTest::testSetValue()
@covers ::set @dataProvider nestedDataProvider
File
- core/
tests/ Drupal/ Tests/ Core/ Config/ ConfigTest.php, line 250
Class
- ConfigTest
- Tests the Config.
Namespace
Drupal\Tests\Core\ConfigCode
public function testSetValue($data) {
foreach ($data as $key => $value) {
$this->config
->set($key, $value);
}
$this
->assertConfigDataEquals($data);
}