public function ContainerTest::testGetThrowsExceptionOnServiceConfiguration in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/dependency-injection/Tests/ContainerTest.php \Symfony\Component\DependencyInjection\Tests\ContainerTest::testGetThrowsExceptionOnServiceConfiguration()
File
- vendor/
symfony/ dependency-injection/ Tests/ ContainerTest.php, line 559
Class
Namespace
Symfony\Component\DependencyInjection\TestsCode
public function testGetThrowsExceptionOnServiceConfiguration() {
$c = new ProjectServiceContainer();
try {
$c
->get('throws_exception_on_service_configuration');
} catch (\Exception $e) {
// Do nothing.
}
$this
->assertFalse($c
->initialized('throws_exception_on_service_configuration'));
// Retry, to make sure that get*Service() will be called.
try {
$c
->get('throws_exception_on_service_configuration');
} catch (\Exception $e) {
// Do nothing.
}
$this
->assertFalse($c
->initialized('throws_exception_on_service_configuration'));
}