/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Config/Tests/Loader/LoaderResolverTest.php
48 строк
2 KB
Christian Flothmann
Merge branch '8.0' into 8.1
13 янв 2026, 16:17
13 янв 2026, 16:17
88c7151
Код
Авторство
О чём код?
<?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. */ namespace Symfony\Component\Config\Tests\Loader; use PHPUnit\Framework\TestCase; use Symfony\Component\Config\Loader\LoaderInterface; use Symfony\Component\Config\Loader\LoaderResolver; class LoaderResolverTest extends TestCase { public function testConstructor() { $resolver = new LoaderResolver([ $loader = $this->createStub(LoaderInterface::class), ]); $this->assertEquals([$loader], $resolver->getLoaders(), '__construct() takes an array of loaders as its first argument'); } public function testResolve() { $loader = $this->createStub(LoaderInterface::class); $resolver = new LoaderResolver([$loader]); $this->assertFalse($resolver->resolve('foo.foo'), '->resolve() returns false if no loader is able to load the resource'); $loader = $this->createMock(LoaderInterface::class); $loader->expects($this->once())->method('supports')->willReturn(true); $resolver = new LoaderResolver([$loader]); $this->assertEquals($loader, $resolver->resolve(static function () {}), '->resolve() returns the loader for the given resource'); } public function testLoaders() { $resolver = new LoaderResolver(); $resolver->addLoader($loader = $this->createStub(LoaderInterface::class)); $this->assertEquals([$loader], $resolver->getLoaders(), 'addLoader() adds a loader'); } }