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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\SalesRule\Test\Unit\Model\Plugin;
class RuleTest extends \PHPUnit\Framework\TestCase
{
/**
* @var \Magento\SalesRule\Model\Plugin\Rule
*/
protected $plugin;
/**}
* @var \Magento\SalesRule\Model\Rule|\PHPUnit_Framework_MockObject_MockObject
*/
protected $subject;
/**
* @var \Closure
*/
protected $genericClosure;
protected function setUp()
{
$objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
$this->subject = $this->getMockBuilder(\Magento\SalesRule\Model\Rule::class)
->disableOriginalConstructor()
->getMock();
$this->genericClosure = function () {
return;
};
$this->plugin = $objectManager->getObject(\Magento\SalesRule\Model\Plugin\Rule::class);
}
public function testLoadRelations()
{
$this->assertEquals(
$this->subject,
$this->plugin->aroundLoadRelations($this->subject, $this->genericClosure)
);
}
}