public function ContainerTest::testGetThrowsException 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::testGetThrowsException()
@expectedException \Exception @expectedExceptionMessage Something went terribly wrong!
File
- vendor/
symfony/ dependency-injection/ 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');
}