public function ContainerTest::testScopeFunctionsWithException in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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\DependencyInjectionCode
public function testScopeFunctionsWithException($method, $argument) {
$callable = array(
$this->container,
$method,
);
$callable($argument);
}