function ImmutableConfigTest::testSave
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Core/Config/ImmutableConfigTest.php \Drupal\Tests\Core\Config\ImmutableConfigTest::testSave()
- 10 core/tests/Drupal/Tests/Core/Config/ImmutableConfigTest.php \Drupal\Tests\Core\Config\ImmutableConfigTest::testSave()
- 11.x core/tests/Drupal/Tests/Core/Config/ImmutableConfigTest.php \Drupal\Tests\Core\Config\ImmutableConfigTest::testSave()
@covers ::save
File
-
core/
tests/ Drupal/ Tests/ Core/ Config/ ImmutableConfigTest.php, line 54
Class
- ImmutableConfigTest
- @coversDefaultClass \Drupal\Core\Config\ImmutableConfig @group Config
Namespace
Drupal\Tests\Core\ConfigCode
public function testSave() {
$this->expectException(ImmutableConfigException::class);
$this->expectExceptionMessage('Can not save immutable configuration test. Use \\Drupal\\Core\\Config\\ConfigFactoryInterface::getEditable() to retrieve a mutable configuration object');
$this->config
->save();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.