/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/View/Test/Unit/DesignLoaderTest.php
74 строки
2 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\View\Test\Unit; use Magento\Framework\App\Area; use Magento\Framework\App\AreaList; use Magento\Framework\App\Request\Http; use Magento\Framework\App\State; use Magento\Framework\View\DesignLoader; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class DesignLoaderTest extends TestCase { /** * @var DesignLoader */ protected $_model; /** * @var MockObject */ protected $_areaListMock; /** * @var MockObject */ protected $_requestMock; /** * @var State|MockObject */ protected $appState; /** * @inheritdoc */ protected function setUp(): void { $this->_areaListMock = $this->createMock(AreaList::class); $this->_requestMock = $this->createMock(Http::class); $this->appState = $this->createMock(State::class); $this->_model = new DesignLoader( $this->_requestMock, $this->_areaListMock, $this->appState ); } /** * @return void */ public function testLoad(): void { $area = $this->createMock(Area::class); $this->appState->expects($this->once())->method('getAreaCode')->willReturn('area'); $this->_areaListMock->expects($this->once())->method('getArea')->with('area')->willReturn($area); $area ->method('load') ->willReturnCallback( function ($arg) use ($area) { if ($arg == Area::PART_DESIGN || $arg == Area::PART_TRANSLATE) { return $area; } } ); $this->_model->load($this->_requestMock); } }