public function DiscoverServiceProvidersTest::testDiscoverServiceCustom in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/DrupalKernel/DiscoverServiceProvidersTest.php \Drupal\Tests\Core\DrupalKernel\DiscoverServiceProvidersTest::testDiscoverServiceCustom()
Tests discovery with user defined container yaml.
@covers ::discoverServiceProviders
File
- core/
tests/ Drupal/ Tests/ Core/ DrupalKernel/ DiscoverServiceProvidersTest.php, line 21
Class
- DiscoverServiceProvidersTest
- @coversDefaultClass \Drupal\Core\DrupalKernel @group DrupalKernel
Namespace
Drupal\Tests\Core\DrupalKernelCode
public function testDiscoverServiceCustom() {
new Settings([
'container_yamls' => [
__DIR__ . '/fixtures/custom.yml',
],
]);
$kernel = new DrupalKernel('prod', new ClassLoader());
$kernel
->discoverServiceProviders();
$reflected_yamls = (new \ReflectionObject($kernel))
->getProperty('serviceYamls');
$reflected_yamls
->setAccessible(TRUE);
$expect = [
'app' => [
'core' => 'core/core.services.yml',
],
'site' => [
__DIR__ . '/fixtures/custom.yml',
],
];
$this
->assertSame($expect, $reflected_yamls
->getValue($kernel));
}