You are here

public function ResolveDefinitionTemplatesPassTest::testProcessDoesNotCopyTags in Zircon Profile 8

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

File

vendor/symfony/dependency-injection/Tests/Compiler/ResolveDefinitionTemplatesPassTest.php, line 101

Class

ResolveDefinitionTemplatesPassTest

Namespace

Symfony\Component\DependencyInjection\Tests\Compiler

Code

public function testProcessDoesNotCopyTags() {
  $container = new ContainerBuilder();
  $container
    ->register('parent')
    ->addTag('foo');
  $container
    ->setDefinition('child', new DefinitionDecorator('parent'));
  $this
    ->process($container);
  $def = $container
    ->getDefinition('child');
  $this
    ->assertEquals(array(), $def
    ->getTags());
}