public function ContainerTest::testSet in Zircon Profile 8.0
Same name in this branch
- 8.0 vendor/symfony/dependency-injection/Tests/ContainerTest.php \Symfony\Component\DependencyInjection\Tests\ContainerTest::testSet()
- 8.0 core/tests/Drupal/Tests/Core/DependencyInjection/ContainerTest.php \Drupal\Tests\Core\DependencyInjection\ContainerTest::testSet()
- 8.0 core/tests/Drupal/Tests/Component/DependencyInjection/ContainerTest.php \Drupal\Tests\Component\DependencyInjection\ContainerTest::testSet()
Same name and namespace in other branches
- 8 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\DependencyInjectionCode
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);
}