![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-backend/Test/Unit/Block/Widget/Grid/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); /** * Test class for \Magento\Backend\Model\Url */ namespace Magento\Backend\Test\Unit\Block\Widget\Grid; use Magento\Backend\Block\Widget\Grid\ColumnSet; use Magento\Backend\Block\Widget\Grid\Extended; use Magento\Framework\App\Request\Http; use Magento\Framework\Data\Collection; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use Magento\Framework\View\Layout; use PHPUnit\Framework\TestCase; class ExtendedTest extends TestCase { /** * @var ObjectManager */ protected $_objectManager; protected function setUp(): void { $this->_objectManager = new ObjectManager($this); } public function testPrepareLoadedCollection() { $request = $this->createPartialMock(Http::class, ['has']); $request->expects($this->any())->method('has')->willReturn(null); $columnSet = $this->createMock(ColumnSet::class); $layout = $this->createMock(Layout::class); $layout->expects($this->any())->method('getChildName')->willReturn('grid.columnSet'); $layout->expects($this->any())->method('getBlock')->willReturn($columnSet); $collection = $this->createMock(Collection::class); $collection->expects($this->never())->method('isLoaded'); $collection->expects($this->never())->method('clear'); $collection->expects($this->atLeastOnce())->method('load'); /** @var Extended $block */ $block = $this->_objectManager->getObject( Extended::class, ['request' => $request, 'layout' => $layout] ); $block->setCollection($collection); $block->getPreparedCollection(); } }