Example #1
0
 /**
  * @covers ::clear
  * @expectedException \Drupal\Core\Config\ImmutableConfigException
  * @expectedExceptionMessage Can not clear name key in immutable configuration test. Use \Drupal\Core\Config\ConfigFactoryInterface::getEditable() to retrieve a mutable configuration object
  */
 public function testClear()
 {
     $this->config->clear('name');
 }