You are here

public function InlineServiceDefinitionsPassTest::testProcessDoesNotInlineWhenServiceIsPrivateButLazy in Zircon Profile 8

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

File

vendor/symfony/dependency-injection/Tests/Compiler/InlineServiceDefinitionsPassTest.php, line 205

Class

InlineServiceDefinitionsPassTest

Namespace

Symfony\Component\DependencyInjection\Tests\Compiler

Code

public function testProcessDoesNotInlineWhenServiceIsPrivateButLazy() {
  $container = new ContainerBuilder();
  $container
    ->register('foo')
    ->setPublic(false)
    ->setLazy(true);
  $container
    ->register('service')
    ->setArguments(array(
    $ref = new Reference('foo'),
  ));
  $this
    ->process($container);
  $arguments = $container
    ->getDefinition('service')
    ->getArguments();
  $this
    ->assertSame($ref, $arguments[0]);
}