public function ContainerTest::testAddScopeDoesNotAllowBuiltInScopes

@expectedException \InvalidArgumentException @dataProvider getBuiltInScopes

File

drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/ContainerTest.php, line 290

Class

ContainerTest

Namespace

Symfony\Component\DependencyInjection\Tests

Code

public function testAddScopeDoesNotAllowBuiltInScopes($scope) {
  $container = new Container();
  $container
    ->addScope(new Scope($scope));
}