You are here

public function ContainerTest::testGetThrowsException in Service Container 7.2

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

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