Spamworldpro Mini Shell
Spamworldpro


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/Helper/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/dev/tests/integration/testsuite/Magento/Payment/Helper/DataTest.php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Payment\Helper;

use PHPUnit\Framework\TestCase;
use Magento\OfflinePayments\Block\Info\Checkmo;
use Magento\Payment\Model\Info;
use Magento\TestFramework\Helper\Bootstrap;

/**
 * Test class for \Magento\Payment\Helper\Data
 */
class DataTest extends TestCase
{
    /**
     * @var Data
     */
    private $helper;

    /**
     * @inheritdoc
     */
    protected function setUp(): void
    {
        parent::setUp();

        $this->helper = Bootstrap::getObjectManager()->get(Data::class);
    }

    /**
     * @return void
     */
    public function testGetInfoBlock()
    {
        $paymentInfo = Bootstrap::getObjectManager()->create(
            Info::class
        );
        $paymentInfo->setMethod('checkmo');
        $result = $this->helper->getInfoBlock($paymentInfo);
        $this->assertInstanceOf(Checkmo::class, $result);
    }

    /**
     * Test to load Payment method title from store config
     *
     * @magentoConfigFixture current_store payment/cashondelivery/title Cash On Delivery Title Of The Method
     */
    public function testPaymentMethodLabelByStore()
    {
        $result = $this->helper->getPaymentMethodList(true, true);
        $this->assertArrayHasKey('cashondelivery', $result, 'Payment info does not exist');
        $this->assertEquals(
            'Cash On Delivery Title Of The Method',
            $result['cashondelivery']['label'],
            'Payment method title is not loaded from store config'
        );
    }
}

Spamworldpro Mini