You are here

public function ContainerTest::testInitialized in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/dependency-injection/Tests/ContainerTest.php \Symfony\Component\DependencyInjection\Tests\ContainerTest::testInitialized()
  2. 8 core/tests/Drupal/Tests/Component/DependencyInjection/ContainerTest.php \Drupal\Tests\Component\DependencyInjection\ContainerTest::testInitialized()
Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Component/DependencyInjection/ContainerTest.php \Drupal\Tests\Component\DependencyInjection\ContainerTest::testInitialized()

Tests that Container::initialized works correctly.

@covers ::initialized

File

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

Class

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

Namespace

Drupal\Tests\Component\DependencyInjection

Code

public function testInitialized() {
  $this
    ->assertFalse($this->container
    ->initialized('late.service'), 'Late service is not initialized.');
  $this->container
    ->get('late.service');
  $this
    ->assertTrue($this->container
    ->initialized('late.service'), 'Late service is initialized after it was retrieved once.');
}