function ServiceProviderTest::register
Same name in other branches
- 10 core/tests/Drupal/KernelTests/Core/ServiceProvider/ServiceProviderTest.php \Drupal\KernelTests\Core\ServiceProvider\ServiceProviderTest::register()
Overrides KernelTestBase::register
File
-
core/
tests/ Drupal/ KernelTests/ Core/ ServiceProvider/ ServiceProviderTest.php, line 28
Class
- ServiceProviderTest
- Tests service provider registration to the DIC.
Namespace
Drupal\KernelTests\Core\ServiceProviderCode
public function register(ContainerBuilder $container) : void {
parent::register($container);
// Undo cache_factory override done in parent because it can hide caching
// issues in container build time.
// @see \Drupal\service_provider_test\ServiceProviderTestServiceProvider::alter()
$this->container
->register('cache_factory', CacheFactory::class)
->addArgument(new Reference('settings'))
->addArgument(new Parameter('cache_default_bin_backends'))
->addMethodCall('setContainer', [
new Reference('service_container'),
]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.