<?php/* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */namespaceSymfony\Component\Config\Tests\Definition\Builder;usePHPUnit\Framework\TestCase;useSymfony\Component\Config\Definition\Builder\ArrayNodeDefinition;useSymfony\Component\Config\Definition\Builder\NodeDefinition;classNodeDefinitionTestextendsTestCase{publicfunctiontestSetPathSeparatorChangesChildren(){$parentNode=newArrayNodeDefinition('name');$childNode=$this->createMock(NodeDefinition::class);$childNode->expects($this->once())->method('setPathSeparator')->with('/');$childNode->expects($this->once())->method('setParent')->with($parentNode)->willReturn($childNode);$parentNode->append($childNode);$parentNode->setPathSeparator('/');}}