function ConfigTest::testValidateNameException

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

@covers ::validateName @dataProvider validateNameProvider

File

core/tests/Drupal/Tests/Core/Config/ConfigTest.php, line 421

Class

ConfigTest
Tests the Config.

Namespace

Drupal\Tests\Core\Config

Code

public function testValidateNameException($name, $exception_message) {
    $this->expectException('\\Drupal\\Core\\Config\\ConfigNameException');
    $this->expectExceptionMessage($exception_message);
    $this->config
        ->validateName($name);
}

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