public function AutoAliasServicePassTest::testProcessWithNonExistingAlias in Service Container 7.2
Same name and namespace in other branches
- 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Compiler/AutoAliasServicePassTest.php \Symfony\Component\DependencyInjection\Tests\Compiler\AutoAliasServicePassTest::testProcessWithNonExistingAlias()
File
- modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ DependencyInjection/ Tests/ Compiler/ AutoAliasServicePassTest.php, line 39
Class
Namespace
Symfony\Component\DependencyInjection\Tests\CompilerCode
public function testProcessWithNonExistingAlias() {
$container = new ContainerBuilder();
$container
->register('example', 'Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\ServiceClassDefault')
->addTag('auto_alias', array(
'format' => '%existing%.example',
));
$container
->setParameter('existing', 'mysql');
$pass = new AutoAliasServicePass();
$pass
->process($container);
$this
->assertEquals('Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\ServiceClassDefault', $container
->getDefinition('example')
->getClass());
$this
->assertInstanceOf('Symfony\\Component\\DependencyInjection\\Tests\\Compiler\\ServiceClassDefault', $container
->get('example'));
}