Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-paypal
Test
Unit
Model
System
Config
Source
YesnoshortcutTest.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Paypal\Test\Unit\Model\System\Config\Source
;
7
8
use
Magento\Paypal\Model\System\Config\Source\Yesnoshortcut
;
9
10
class
YesnoshortcutTest
extends
\PHPUnit\Framework\TestCase
11
{
15
protected
$_model
;
16
17
protected
function
setUp
()
18
{
19
$this->_model =
new
Yesnoshortcut
();
20
}
21
22
public
function
testToOptionArray
()
23
{
24
$expectedResult = [
25
[
'value'
=> 1,
'label'
=>
__
(
'Yes (PayPal recommends this option)'
)],
26
[
'value'
=> 0,
'label'
=>
__
(
'No'
)]
27
];
28
$this->assertEquals($expectedResult, $this->_model->toOptionArray());
29
}
30
}
Magento\Paypal\Model\System\Config\Source\Yesnoshortcut
Definition:
Yesnoshortcut.php:11
__
__()
Definition:
__.php:13
Magento\Paypal\Test\Unit\Model\System\Config\Source\YesnoshortcutTest\testToOptionArray
testToOptionArray()
Definition:
YesnoshortcutTest.php:22
Magento\Paypal\Test\Unit\Model\System\Config\Source\YesnoshortcutTest
Definition:
YesnoshortcutTest.php:10
Magento\Paypal\Test\Unit\Model\System\Config\Source\YesnoshortcutTest\$_model
$_model
Definition:
YesnoshortcutTest.php:15
Magento\Paypal\Test\Unit\Model\System\Config\Source
Definition:
BmlPositionTest.php:6
Magento\Paypal\Test\Unit\Model\System\Config\Source\YesnoshortcutTest\setUp
setUp()
Definition:
YesnoshortcutTest.php:17