We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93a5ea4 commit 2440be6Copy full SHA for 2440be6
tests/Integration/DependencyInjection/ConfigurationTest.php
@@ -22,6 +22,15 @@ public function testProcessConfigurationWithDefaultConfiguration(): void
22
self::assertSame($expectedBundleDefaultConfig, $this->processConfiguration([]));
23
}
24
25
+ public function testConfigurationTreeBuilderRootName(): void
26
+ {
27
+ $configuration = new Configuration();
28
+ $treeBuilder = $configuration->getConfigTreeBuilder();
29
+ $rootNodeName = $treeBuilder->buildTree()->getName();
30
+
31
+ $this->assertSame('symfony_health_check', $rootNodeName);
32
+ }
33
34
public function testProcessConfigurationHealthChecks(): void
35
{
36
$expectedConfig = [
0 commit comments