public function ContainerBuilderTest::testCreateSyntheticService in Service Container 7.2
Same name and namespace in other branches
- 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/ContainerBuilderTest.php \Symfony\Component\DependencyInjection\Tests\ContainerBuilderTest::testCreateSyntheticService()
@covers Symfony\Component\DependencyInjection\ContainerBuilder::createService @expectedException \RuntimeException
File
- modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ DependencyInjection/ Tests/ ContainerBuilderTest.php, line 421
Class
Namespace
Symfony\Component\DependencyInjection\TestsCode
public function testCreateSyntheticService() {
$builder = new ContainerBuilder();
$builder
->register('foo', 'Bar\\FooClass')
->setSynthetic(true);
$builder
->get('foo');
}