| Current Path : /home/rtorresani/www/vendor/magento/module-catalog/Test/Unit/Block/Product/ |
| Current File : //home/rtorresani/www/vendor/magento/module-catalog/Test/Unit/Block/Product/ListTest.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Catalog\Test\Unit\Block\Product;
use Magento\Catalog\Block\Product\ListProduct;
use Magento\Framework\DataObject;
use PHPUnit\Framework\TestCase;
class ListTest extends TestCase
{
public function testGetMode()
{
$childBlock = new DataObject();
$block = $this->createPartialMock(ListProduct::class, ['getChildBlock']);
$block->expects(
$this->atLeastOnce()
)->method(
'getChildBlock'
)->with(
'toolbar'
)->willReturn(
$childBlock
);
$expectedMode = 'a mode';
$this->assertNotEquals($expectedMode, $block->getMode());
$childBlock->setCurrentMode($expectedMode);
$this->assertEquals($expectedMode, $block->getMode());
}
}