You are here

public function CheckCircularReferencesPassTest::testProcessIgnoresMethodCalls in Zircon Profile 8.0

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

File

vendor/symfony/dependency-injection/Tests/Compiler/CheckCircularReferencesPassTest.php, line 109

Class

CheckCircularReferencesPassTest

Namespace

Symfony\Component\DependencyInjection\Tests\Compiler

Code

public function testProcessIgnoresMethodCalls() {
  $container = new ContainerBuilder();
  $container
    ->register('a')
    ->addArgument(new Reference('b'));
  $container
    ->register('b')
    ->addMethodCall('setA', array(
    new Reference('a'),
  ));
  $this
    ->process($container);
}