/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/Config/Test/Unit/ReaderTest.php
47 строк
1 KB
Manish Ranjan
AC-16248: PHPUnit 12 Upgrade | Fix Framework unit tests
09 янв 2026, 19:35
09 янв 2026, 19:35
de6cafc
Код
Авторство
О чём код?
<?php /** * Copyright 2016 Adobe * All Rights Reserved. */ declare(strict_types=1); namespace Magento\Framework\Config\Test\Unit; use Magento\Framework\App\Config\Reader\Source\SourceInterface; use Magento\Framework\Config\Reader; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class ReaderTest extends TestCase { /** * @var SourceInterface|MockObject */ private $source; /** * @var Reader */ private $reader; protected function setUp(): void { $this->source = $this->createMock(SourceInterface::class); $this->reader = new Reader([['class' => $this->source]]); } public function testRead() { $config = [ 'default' => [ 'general/locale/code'=> 'ru_RU', 'general/locale/timezone'=> 'America/Chicago', ] ]; $this->source->expects($this->once()) ->method('get') ->with(null) ->willReturn($config); $this->assertEquals($config, $this->reader->read()); } }