/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/Config/Test/Unit/ScopeTest.php
48 строк
1 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Copyright 2015 Adobe * All Rights Reserved. */ declare(strict_types=1); namespace Magento\Framework\Config\Test\Unit; use Magento\Framework\App\AreaList; use Magento\Framework\Config\Scope; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class ScopeTest extends TestCase { /** * @var Scope */ private $model; /** * @var MockObject|AreaList */ private $areaListMock; protected function setUp(): void { $this->areaListMock = $this->createPartialMock(AreaList::class, ['getCodes']); $this->model = new Scope($this->areaListMock); } public function testScopeSetGet() { $scopeName = 'test_scope'; $this->model->setCurrentScope($scopeName); $this->assertEquals($scopeName, $this->model->getCurrentScope()); } public function testGetAllScopes() { $expectedBalances = ['primary', 'global', 'test_scope']; $this->areaListMock->expects($this->once()) ->method('getCodes') ->willReturn(['test_scope']); $this->assertEquals($expectedBalances, $this->model->getAllScopes()); } }