You are here

public function ContainerTest::testResolveServicesAndParametersForPrivateService in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/DependencyInjection/ContainerTest.php \Drupal\Tests\Component\DependencyInjection\ContainerTest::testResolveServicesAndParametersForPrivateService()
  2. 9 core/tests/Drupal/Tests/Component/DependencyInjection/ContainerTest.php \Drupal\Tests\Component\DependencyInjection\ContainerTest::testResolveServicesAndParametersForPrivateService()

Tests that private services work correctly.

@covers ::get @covers ::createService @covers ::resolveServicesAndParameters

File

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

Class

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

Namespace

Drupal\Tests\Component\DependencyInjection

Code

public function testResolveServicesAndParametersForPrivateService() {
  $service = $this->container
    ->get('service_using_private');
  $private_service = $service
    ->getSomeOtherService();
  $this
    ->assertEquals('really_private_lama', $private_service
    ->getSomeParameter(), 'Private was found successfully.');

  // Test that sharing the same private services works.
  $service = $this->container
    ->get('another_service_using_private');
  $another_private_service = $service
    ->getSomeOtherService();
  $this
    ->assertNotSame($private_service, $another_private_service, 'Private service is not shared.');
  $this
    ->assertEquals('really_private_lama', $private_service
    ->getSomeParameter(), 'Private was found successfully.');
}