b374k
m1n1 1.01
Apache/2.4.41 (Ubuntu)
Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
uid=33(www-data) gid=33(www-data) groups=33(www-data)
server ip : 62.171.164.128 | your ip : 127.0.0.1
safemode OFF
 >  / home / dev2.destoffenstraat.com / dev / tests / integration / testsuite / Magento / Payment / Helper /
Filename/home/dev2.destoffenstraat.com/dev/tests/integration/testsuite/Magento/Payment/Helper/DataTest.php
Size1.56 kb
Permissionrw-r--r--
Ownerroot : root
Create time17-Aug-2025 10:26
Last modified28-Jan-2025 06:45
Last accessed23-Aug-2025 02:07
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?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'
);
}
}