You are here

public function ContainerTest::testScopeFunctionsWithException in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Component/DependencyInjection/ContainerTest.php \Drupal\Tests\Component\DependencyInjection\ContainerTest::testScopeFunctionsWithException()

Tests that unsupported methods throw an Exception.

@covers ::enterScope @covers ::leaveScope @covers ::addScope @covers ::hasScope @covers ::isScopeActive

@expectedException \BadMethodCallException

@dataProvider scopeExceptionTestProvider

File

core/tests/Drupal/Tests/Component/DependencyInjection/ContainerTest.php, line 668
Contains \Drupal\Tests\Component\DependencyInjection\ContainerTest.

Class

ContainerTest
@coversDefaultClass \Drupal\Component\DependencyInjection\Container @group DependencyInjection

Namespace

Drupal\Tests\Component\DependencyInjection

Code

public function testScopeFunctionsWithException($method, $argument) {
  $callable = array(
    $this->container,
    $method,
  );
  $callable($argument);
}