public function DeprecatedServicesTest::testDefaultImplementations in Drupal 8
@expectedDeprecation The "path.alias_manager" service is deprecated. Use "path_alias.manager" instead. See https://drupal.org/node/3092086
File
- core/
modules/ path_alias/ tests/ src/ Kernel/ DeprecatedServicesTest.php, line 88
Class
- DeprecatedServicesTest
- Tests deprecation of path alias core services and the related BC logic.
Namespace
Drupal\Tests\path_alias\KernelCode
public function testDefaultImplementations() {
$this
->assertServiceClass('path.alias_manager', CoreAliasManager::class);
$this
->assertServiceClass('path_alias.manager', AliasManager::class);
}