/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
setup/src/Magento/Setup/Test/Unit/Model/LicenseTest.php
63 строки
2 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 11:23
22 окт 2025, 11:23
6c2f6e6
Код
Авторство
О чём код?
<?php /** * Copyright 2015 Adobe * All Rights Reserved. */ declare(strict_types=1); namespace Magento\Setup\Test\Unit\Model; use Magento\Framework\Filesystem; use Magento\Framework\Filesystem\Directory\Read; use Magento\Setup\Model\License; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class LicenseTest extends TestCase { /** * @var MockObject|Read */ private $directoryReadMock; /** * @var MockObject|Filesystem */ private $filesystemMock; protected function setUp(): void { $this->directoryReadMock = $this->createMock(Read::class); $this->filesystemMock = $this->createMock(Filesystem::class); $this->filesystemMock ->expects($this->once()) ->method('getDirectoryRead') ->willReturn($this->directoryReadMock); } public function testGetContents() { $this->directoryReadMock ->expects($this->atLeastOnce()) ->method('readFile') ->willReturn('License text'); $this->directoryReadMock ->expects($this->atLeastOnce()) ->method('isFile') ->willReturn(true); $license = new License($this->filesystemMock); $this->assertSame('License text', $license->getContents()); } public function testGetContentsNoFile() { $this->directoryReadMock ->expects($this->atLeastOnce()) ->method('isFile') ->willReturn(false); $license = new License($this->filesystemMock); $this->assertFalse($license->getContents()); } }