46 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
<?php
 | 
						|
/**
 | 
						|
 * Copyright © Magento, Inc. All rights reserved.
 | 
						|
 * See COPYING.txt for license details.
 | 
						|
 */
 | 
						|
namespace Magento\Widget\Model\Layout;
 | 
						|
 | 
						|
class UpdateTest extends \PHPUnit\Framework\TestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var \Magento\Widget\Model\Layout\Update
 | 
						|
     */
 | 
						|
    protected $_model;
 | 
						|
 | 
						|
    protected function setUp(): void
 | 
						|
    {
 | 
						|
        $this->_model = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
 | 
						|
            \Magento\Widget\Model\Layout\Update::class
 | 
						|
        );
 | 
						|
    }
 | 
						|
 | 
						|
    public function testConstructor()
 | 
						|
    {
 | 
						|
        $this->_model = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
 | 
						|
            \Magento\Widget\Model\Layout\Update::class
 | 
						|
        );
 | 
						|
        $this->assertInstanceOf(
 | 
						|
            \Magento\Widget\Model\ResourceModel\Layout\Update::class,
 | 
						|
            $this->_model->getResource()
 | 
						|
        );
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @magentoDbIsolation enabled
 | 
						|
     */
 | 
						|
    public function testCrud()
 | 
						|
    {
 | 
						|
        $this->_model->setData(['handle' => 'default', 'xml' => '<layout/>', 'sort_order' => 123]);
 | 
						|
        $entityHelper = new \Magento\TestFramework\Entity(
 | 
						|
            $this->_model,
 | 
						|
            ['handle' => 'custom', 'xml' => '<layout version="0.1.0"/>', 'sort_order' => 456]
 | 
						|
        );
 | 
						|
        $entityHelper->testCrud();
 | 
						|
    }
 | 
						|
}
 |