public function ContainerTest::testGetForNonExistentServiceWithExceptionOnSecondCall in Drupal 10
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Component/DependencyInjection/ContainerTest.php \Drupal\Tests\Component\DependencyInjection\ContainerTest::testGetForNonExistentServiceWithExceptionOnSecondCall()
- 9 core/tests/Drupal/Tests/Component/DependencyInjection/ContainerTest.php \Drupal\Tests\Component\DependencyInjection\ContainerTest::testGetForNonExistentServiceWithExceptionOnSecondCall()
Tests multiple Container::get() calls with exception on the second time.
@covers ::get @covers ::createService @covers ::getAlternatives
File
- core/
tests/ Drupal/ Tests/ Component/ DependencyInjection/ ContainerTest.php, line 391 - Contains \Drupal\Tests\Component\DependencyInjection\ContainerTest.
Class
- ContainerTest
- @coversDefaultClass \Drupal\Component\DependencyInjection\Container @group DependencyInjection
Namespace
Drupal\Tests\Component\DependencyInjectionCode
public function testGetForNonExistentServiceWithExceptionOnSecondCall() {
$this
->assertNull($this->container
->get('service_not_exists', ContainerInterface::NULL_ON_INVALID_REFERENCE), 'Not found service does nto throw exception.');
$this
->expectException(ServiceNotFoundException::class);
$this->container
->get('service_not_exists');
}