You are here

public function AutoAliasServicePassTest::testProcessWithExistingAlias in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/dependency-injection/Tests/Compiler/AutoAliasServicePassTest.php \Symfony\Component\DependencyInjection\Tests\Compiler\AutoAliasServicePassTest::testProcessWithExistingAlias()

File

vendor/symfony/dependency-injection/Tests/Compiler/AutoAliasServicePassTest.php, line 63

Class

AutoAliasServicePassTest

Namespace

Symfony\Component\DependencyInjection\Tests\Compiler

Code

public function testProcessWithExistingAlias() {
  $container = new ContainerBuilder();
  $container
    ->register('example', 'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\ServiceClassDefault')
    ->addTag('auto_alias', array(
    'format' => '%existing%.example',
  ));
  $container
    ->register('mysql.example', 'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\ServiceClassMysql');
  $container
    ->setParameter('existing', 'mysql');
  $pass = new AutoAliasServicePass();
  $pass
    ->process($container);
  $this
    ->assertTrue($container
    ->hasAlias('example'));
  $this
    ->assertEquals('mysql.example', $container
    ->getAlias('example'));
  $this
    ->assertInstanceOf('Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\ServiceClassMysql', $container
    ->get('example'));
}