File
- drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Compiler/IntegrationTest.php, line 91
Class
- IntegrationTest
- This class tests the integration of the different compiler passes
Namespace
Symfony\Component\DependencyInjection\Tests\Compiler
Code
public function testProcessInlinesWhenThereAreMultipleReferencesButFromTheSameDefinition() {
$container = new ContainerBuilder();
$container
->register('a', '\\stdClass')
->addArgument(new Reference('b'))
->addMethodCall('setC', array(
new Reference('c'),
));
$container
->register('b', '\\stdClass')
->addArgument(new Reference('c'))
->setPublic(false);
$container
->register('c', '\\stdClass')
->setPublic(false);
$container
->compile();
$this
->assertTrue($container
->hasDefinition('a'));
$this
->assertFalse($container
->hasDefinition('b'));
$this
->assertFalse($container
->hasDefinition('c'), 'Service C was not inlined.');
}