function ImmutableConfigTest::testDelete

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Config/ImmutableConfigTest.php \Drupal\Tests\Core\Config\ImmutableConfigTest::testDelete()
  2. 10 core/tests/Drupal/Tests/Core/Config/ImmutableConfigTest.php \Drupal\Tests\Core\Config\ImmutableConfigTest::testDelete()
  3. 11.x core/tests/Drupal/Tests/Core/Config/ImmutableConfigTest.php \Drupal\Tests\Core\Config\ImmutableConfigTest::testDelete()

@covers ::delete

File

core/tests/Drupal/Tests/Core/Config/ImmutableConfigTest.php, line 60

Class

ImmutableConfigTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Config%21ImmutableConfig.php/class/ImmutableConfig/8.9.x" title="Defines the immutable configuration object." class="local">\Drupal\Core\Config\ImmutableConfig</a> @group Config

Namespace

Drupal\Tests\Core\Config

Code

public function testDelete() {
    $this->expectException(ImmutableConfigException::class);
    $this->expectExceptionMessage('Can not delete immutable configuration test. Use \\Drupal\\Core\\Config\\ConfigFactoryInterface::getEditable() to retrieve a mutable configuration object');
    $this->config
        ->delete();
}

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