Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * Copyright Magento, Inc. All rights reserved. * See COPYING.txt for license ..
Decoded Output download
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Catalog\Test\Unit\Model\Product\Pricing\Renderer;
use Magento\Catalog\Model\Product;
use Magento\Catalog\Model\Product\Pricing\Renderer\SalableResolver;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class SalableResolverTest extends TestCase
{
/**
* @var SalableResolver
*/
protected $object;
/**
* @var Product|MockObject
*/
protected $product;
protected function setUp(): void
{
$this->product = $this->getMockBuilder(Product::class)
->addMethods(['getCanShowPrice'])
->disableOriginalConstructor()
->getMock();
$objectManager = new ObjectManager($this);
$this->object = $objectManager->getObject(
SalableResolver::class
);
}
public function testSalableItem()
{
$this->product->expects($this->any())
->method('getCanShowPrice')
->willReturn(true);
$result = $this->object->isSalable($this->product);
$this->assertTrue($result);
}
public function testNotSalableItem()
{
$this->product->expects($this->any())
->method('getCanShowPrice')
->willReturn(false);
$result = $this->object->isSalable($this->product);
$this->assertFalse($result);
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Catalog\Test\Unit\Model\Product\Pricing\Renderer;
use Magento\Catalog\Model\Product;
use Magento\Catalog\Model\Product\Pricing\Renderer\SalableResolver;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class SalableResolverTest extends TestCase
{
/**
* @var SalableResolver
*/
protected $object;
/**
* @var Product|MockObject
*/
protected $product;
protected function setUp(): void
{
$this->product = $this->getMockBuilder(Product::class)
->addMethods(['getCanShowPrice'])
->disableOriginalConstructor()
->getMock();
$objectManager = new ObjectManager($this);
$this->object = $objectManager->getObject(
SalableResolver::class
);
}
public function testSalableItem()
{
$this->product->expects($this->any())
->method('getCanShowPrice')
->willReturn(true);
$result = $this->object->isSalable($this->product);
$this->assertTrue($result);
}
public function testNotSalableItem()
{
$this->product->expects($this->any())
->method('getCanShowPrice')
->willReturn(false);
$result = $this->object->isSalable($this->product);
$this->assertFalse($result);
}
}
Function Calls
None |
Stats
MD5 | 48c80143c2ce59cad203500645fb3d55 |
Eval Count | 0 |
Decode Time | 76 ms |