File
- drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Compiler/CheckReferenceValidityPassTest.php, line 84
Class
- CheckReferenceValidityPassTest
Namespace
Symfony\Component\DependencyInjection\Tests\Compiler
Code
public function testProcess() {
$container = new ContainerBuilder();
$container
->register('a')
->addArgument(new Reference('b'));
$container
->register('b');
$this
->process($container);
}