You are here

public function ContainerBuilderTest::testNoExceptionWhenSetSyntheticServiceOnAFrozenContainer in Zircon Profile 8

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

File

vendor/symfony/dependency-injection/Tests/ContainerBuilderTest.php, line 718

Class

ContainerBuilderTest

Namespace

Symfony\Component\DependencyInjection\Tests

Code

public function testNoExceptionWhenSetSyntheticServiceOnAFrozenContainer() {
  $container = new ContainerBuilder();
  $def = new Definition('stdClass');
  $def
    ->setSynthetic(true);
  $container
    ->setDefinition('a', $def);
  $container
    ->compile();
  $container
    ->set('a', $a = new \stdClass());
  $this
    ->assertEquals($a, $container
    ->get('a'));
}