/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
dev/tests/integration/testsuite/Magento/Quote/Model/QuoteIdToMaskedQuoteIdTest.php
57 строк
2 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 10:44
22 окт 2025, 10:44
264bea2
Код
Авторство
О чём код?
<?php /** * Copyright 2018 Adobe * All Rights Reserved. */ declare(strict_types=1); namespace Magento\Quote\Model; use Magento\Framework\Exception\NoSuchEntityException; use Magento\TestFramework\Helper\Bootstrap as BootstrapHelper; use Magento\Quote\Model\ResourceModel\Quote as QuoteResource; class QuoteIdToMaskedQuoteIdTest extends \PHPUnit\Framework\TestCase { /** * @var QuoteResource */ private $quoteResource; /** * @var QuoteFactory */ private $quoteFactory; /** * @var QuoteIdToMaskedQuoteIdInterface */ private $quoteIdToMaskedQuoteId; protected function setUp(): void { $objectManager = BootstrapHelper::getObjectManager(); $this->quoteIdToMaskedQuoteId = $objectManager->create(QuoteIdToMaskedQuoteIdInterface::class); $this->quoteFactory = $objectManager->create(QuoteFactory::class); $this->quoteResource = $objectManager->create(QuoteResource::class); } /** * @magentoDataFixture Magento/Sales/_files/quote.php */ public function testMaskedQuoteId() { $quote = $this->quoteFactory->create(); $this->quoteResource->load($quote, 'test01', 'reserved_order_id'); $maskedQuoteId = $this->quoteIdToMaskedQuoteId->execute((int) $quote->getId()); self::assertNotEmpty($maskedQuoteId); } public function testMaskedQuoteIdWithNonExistentQuoteId() { self::expectException(NoSuchEntityException::class); $this->quoteIdToMaskedQuoteId->execute(0); } }