You are here

public function DeprecatedClassesTest::testAliasPathProcessor in Drupal 8

@covers \Drupal\path_alias\PathProcessor\AliasPathProcessor::__construct

File

core/modules/path_alias/tests/src/Unit/DeprecatedClassesTest.php, line 135

Class

DeprecatedClassesTest
Tests deprecation of path alias core service classes.

Namespace

Drupal\Tests\path_alias\Unit

Code

public function testAliasPathProcessor() {
  $object = new AliasPathProcessor($this->aliasManager);
  $this
    ->assertInstanceOf(PathProcessorAlias::class, $object);
}