You are here

public function ContainerTest::testEnterScopeDoesNotAllowInactiveParentScope in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/dependency-injection/Tests/ContainerTest.php \Symfony\Component\DependencyInjection\Tests\ContainerTest::testEnterScopeDoesNotAllowInactiveParentScope()

@expectedException \RuntimeException

File

vendor/symfony/dependency-injection/Tests/ContainerTest.php, line 457

Class

ContainerTest

Namespace

Symfony\Component\DependencyInjection\Tests

Code

public function testEnterScopeDoesNotAllowInactiveParentScope() {
  $container = new Container();
  $container
    ->addScope(new Scope('foo'));
  $container
    ->addScope(new Scope('bar', 'foo'));
  $container
    ->enterScope('bar');
}