You are here

public function ConfigTest::testValidateNameException in Drupal 9

Same name and namespace in other branches
  1. 8 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 418

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);
}