![]() 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/vendor/magento/module-sales/Test/Unit/Block/Adminhtml/Order/Create/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Sales\Test\Unit\Block\Adminhtml\Order\Create; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use Magento\Quote\Model\Quote; use Magento\Sales\Block\Adminhtml\Order\Create\Totals; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; /** * Totals block test */ class TotalsTest extends TestCase { /** * @var ObjectManager */ protected $objectManager; /** * @var Totals */ protected $totals; /** * @var Quote|MockObject */ protected $quoteMock; /** * @var \Magento\Backend\Model\Session\Quote|MockObject */ protected $sessionQuoteMock; protected function setUp(): void { $this->objectManager = new ObjectManager($this); $this->quoteMock = $this->createPartialMock(Quote::class, ['getCustomerNoteNotify']); $this->sessionQuoteMock = $this->createMock(\Magento\Backend\Model\Session\Quote::class); $this->sessionQuoteMock->expects($this->any()) ->method('getQuote') ->willReturn($this->quoteMock); $this->totals = $this->objectManager->getObject( Totals::class, [ 'sessionQuote' => $this->sessionQuoteMock ] ); } /** * @param mixed $customerNoteNotify * @param bool $expectedResult * @dataProvider getNoteNotifyDataProvider */ public function testGetNoteNotify($customerNoteNotify, $expectedResult) { $this->quoteMock->expects($this->any()) ->method('getCustomerNoteNotify') ->willReturn($customerNoteNotify); $this->assertEquals($expectedResult, $this->totals->getNoteNotify()); } /** * @return array */ public function getNoteNotifyDataProvider() { return [ [0, false], [1, true], ['0', false], ['1', true], [null, true] ]; } }