You are here

public function ProxyServicesPassTest::testContainerWithLazyServicesWithoutProxyClass in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/ProxyServicesPassTest.php \Drupal\Tests\Core\DependencyInjection\Compiler\ProxyServicesPassTest::testContainerWithLazyServicesWithoutProxyClass()
  2. 9 core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/ProxyServicesPassTest.php \Drupal\Tests\Core\DependencyInjection\Compiler\ProxyServicesPassTest::testContainerWithLazyServicesWithoutProxyClass()

@covers ::process

File

core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/ProxyServicesPassTest.php, line 69

Class

ProxyServicesPassTest
@coversDefaultClass \Drupal\Core\DependencyInjection\Compiler\ProxyServicesPass @group DependencyInjection

Namespace

Drupal\Tests\Core\DependencyInjection\Compiler

Code

public function testContainerWithLazyServicesWithoutProxyClass() {
  $container = new ContainerBuilder();
  $container
    ->register('path.current', CurrentPathStack::class)
    ->setLazy(TRUE);
  $this
    ->expectException(InvalidArgumentException::class);
  $this->proxyServicesPass
    ->process($container);
}