You are here

public function ContainerTest::testSet in Zircon Profile 8

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

@covers ::set

File

core/tests/Drupal/Tests/Core/DependencyInjection/ContainerTest.php, line 33
Contains \Drupal\Tests\Core\DependencyInjection\ContainerTest.

Class

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

Namespace

Drupal\Tests\Core\DependencyInjection

Code

public function testSet() {
  $container = new Container();
  $class = new BarClass();
  $container
    ->set('bar', $class);

  // Ensure that _serviceId is set on the object.
  $this
    ->assertEquals('bar', $class->_serviceId);
}