You are here

public function ContainerTest::testGetThrowsException in Zircon Profile 8

Same name and namespace in other branches
  1. 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

ContainerTest

Namespace

Symfony\Component\DependencyInjection\Tests

Code

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');
}