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); } }