You are here

public function ContainerTest::testSet in Zircon Profile 8.0

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

Tests that Container::set() works properly.

@covers ::set

File

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

Class

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

Namespace

Drupal\Tests\Component\DependencyInjection

Code

public function testSet() {
  $this
    ->assertNull($this->container
    ->get('new_id', ContainerInterface::NULL_ON_INVALID_REFERENCE));
  $mock_service = new MockService();
  $this->container
    ->set('new_id', $mock_service);
  $this
    ->assertSame($mock_service, $this->container
    ->get('new_id'), 'A manual set service works as expected.');
}