public function AutoAliasServicePassTest::testProcessWithExistingAlias in Zircon Profile 8
Same name and namespace in other branches
- 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
Namespace
Symfony\Component\DependencyInjection\Tests\CompilerCode
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'));
}