public function ContainerTest::testSet in Drupal 10
Same name in this branch
- 10 core/tests/Drupal/Tests/Core/DependencyInjection/ContainerTest.php \Drupal\Tests\Core\DependencyInjection\ContainerTest::testSet()
- 10 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()
- 9 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 27
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);
}