123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?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()
- {
- $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();
- }
- }
|