![]() 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/cartforge.co/vendor/magento/module-sales/Test/Unit/Model/Order/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Sales\Test\Unit\Model\Order; use Magento\Sales\Api\Data\CreditmemoInterface; use Magento\Sales\Api\Data\InvoiceInterface; use Magento\Sales\Api\Data\OrderInterface; use Magento\Sales\Model\Order\Invoice\PayOperation; use Magento\Sales\Model\Order\PaymentAdapter; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; /** * Unit test for payment adapter. */ class PaymentAdapterTest extends TestCase { /** * @var PaymentAdapter */ private $subject; /** * @var OrderInterface|MockObject */ private $orderMock; /** * @var CreditmemoInterface|MockObject */ private $creditmemoMock; /** * @var InvoiceInterface|MockObject */ private $invoiceMock; /** * @var PayOperation|MockObject */ private $payOperationMock; protected function setUp(): void { $this->orderMock = $this->getMockBuilder(OrderInterface::class) ->disableOriginalConstructor() ->getMockForAbstractClass(); $this->creditmemoMock = $this->getMockBuilder(CreditmemoInterface::class) ->disableOriginalConstructor() ->getMockForAbstractClass(); $this->invoiceMock = $this->getMockBuilder(InvoiceInterface::class) ->disableOriginalConstructor() ->getMockForAbstractClass(); $this->payOperationMock = $this->getMockBuilder(PayOperation::class) ->disableOriginalConstructor() ->getMock(); $this->subject = new PaymentAdapter( $this->payOperationMock ); } public function testPay() { $isOnline = true; $this->payOperationMock->expects($this->once()) ->method('execute') ->with($this->orderMock, $this->invoiceMock, $isOnline) ->willReturn($this->orderMock); $this->assertEquals( $this->orderMock, $this->subject->pay( $this->orderMock, $this->invoiceMock, $isOnline ) ); } }