1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\CurrencySymbol\Test\Unit\Block\Adminhtml\System;
class CurrencysymbolTest extends \PHPUnit\Framework\TestCase
{
/**
* Object manager helper
*
* @var \Magento\Framework\TestFramework\Unit\Helper\ObjectManager
*/
protected $objectManagerHelper;
protected function setUp()
{
$this->objectManagerHelper = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
}
protected function tearDown()
{
unset($this->objectManagerHelper);
}
public function testPrepareLayout()
{
$symbolSystemFactoryMock = $this->createPartialMock(
\Magento\CurrencySymbol\Model\System\CurrencysymbolFactory::class,
['create']
);
$blockMock = $this->createPartialMock(
\Magento\Framework\View\Element\BlockInterface::class,
['addChild', 'toHtml']
);
/** @var $layoutMock \Magento\Framework\View\LayoutInterface|\PHPUnit_Framework_MockObject_MockObject */
$layoutMock = $this->getMockForAbstractClass(
\Magento\Framework\View\LayoutInterface::class,
[],
'',
false,
false,
true,
['getBlock']
);
$layoutMock->expects($this->once())->method('getBlock')->willReturn($blockMock);
$blockMock->expects($this->once())
->method('addChild')
->with(
'save_button',
\Magento\Backend\Block\Widget\Button::class,
[
'label' => __('Save Currency Symbols'),
'class' => 'save primary save-currency-symbols',
'data_attribute' => [
'mage-init' => ['button' => ['event' => 'save', 'target' => '#currency-symbols-form']],
]
]
);
/** @var $block \Magento\CurrencySymbol\Block\Adminhtml\System\Currencysymbol */
$block = $this->objectManagerHelper->getObject(
\Magento\CurrencySymbol\Block\Adminhtml\System\Currencysymbol::class,
[
'symbolSystemFactory' => $symbolSystemFactoryMock,
'layout' => $layoutMock
]
);
$block->setLayout($layoutMock);
}
}