public function ContainerTest::testGetThrowsException in Service Container 7
Same name and namespace in other branches
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/ContainerTest.php \Symfony\Component\DependencyInjection\Tests\ContainerTest::testGetThrowsException()
@expectedException Exception @expectedExceptionMessage Something went terribly wrong!
File
- modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ DependencyInjection/ Tests/ ContainerTest.php, line 545
Class
Namespace
Symfony\Component\DependencyInjection\TestsCode
public function testGetThrowsException() {
$c = new ProjectServiceContainer();
try {
$c
->get('throw_exception');
} catch (\Exception $e) {
// Do nothing.
}
// Retry, to make sure that get*Service() will be called.
$c
->get('throw_exception');
}