![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/dev/tests/integration/testsuite/Magento/Payment/Model/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Payment\Model; use Magento\Sales\Model\Order; use Magento\Quote\Model\Quote; use Magento\TestFramework\Helper\Bootstrap; use Magento\TestFramework\ObjectManager; /** * @magentoAppArea adminhtml * @SuppressWarnings(PHPMD.CouplingBetweenObjects) */ class PaymentInfoTest extends \PHPUnit\Framework\TestCase { /** * @var ObjectManager */ protected $_objectManager; /** * @var Order */ protected $_order; /** @var Quote */ protected $_quote; protected function setUp(): void { $this->_objectManager = Bootstrap::getObjectManager(); $this->_order = $this->_objectManager->create( Order::class ); $this->_quote = $this->_objectManager->create( Quote::class ); } /** * @magentoDbIsolation enabled * @magentoAppIsolation enabled * @magentoDataFixture Magento/Payment/_files/payment_info.php */ public function testUnsetPaymentInformation() { $order = $this->_order->loadByIncrementId('100000001'); /** @var \Magento\Sales\Model\Order\Payment $paymentOrder */ $paymentOrder = $order->getPayment(); $paymentOrder->unsAdditionalInformation('testing'); $quote = $this->_quote->load('reserved_order_id', 'reserved_order_id'); /** @var \Magento\Quote\Model\Quote\Payment $paymentQuote */ $paymentQuote = $quote->getPayment(); $paymentQuote->unsAdditionalInformation('testing'); $this->assertFalse($paymentOrder->hasAdditionalInformation('testing')); $this->assertFalse($paymentQuote->hasAdditionalInformation('testing')); } }