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\CopyConstructor;
use Magento\Catalog\Model\Product;
use Magento\Catalog\Model\Product\CopyConstructor\Composite;
use Magento\Catalog\Model\Product\CopyConstructorFactory;
use Magento\Catalog\Model\Product\CopyConstructorInterface;
use PHPUnit\Framework\TestCase;
class CompositeTest extends TestCase
{
public function testBuild()
{
$factoryMock = $this->createMock(CopyConstructorFactory::class);
$constructorMock = $this->getMockForAbstractClass(CopyConstructorInterface::class);
$factoryMock->expects(
$this->exactly(2)
)->method(
'create'
)->with(
'constructorInstance'
)->willReturn(
$constructorMock
);
$productMock = $this->createMock(Product::class);
$duplicateMock = $this->createMock(Product::class);
$constructorMock->expects($this->exactly(2))->method('build')->with($productMock, $duplicateMock);
$model = new Composite(
$factoryMock,
['constructorInstance', 'constructorInstance']
);
$model->build($productMock, $duplicateMock);
}
}
?>
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\CopyConstructor;
use Magento\Catalog\Model\Product;
use Magento\Catalog\Model\Product\CopyConstructor\Composite;
use Magento\Catalog\Model\Product\CopyConstructorFactory;
use Magento\Catalog\Model\Product\CopyConstructorInterface;
use PHPUnit\Framework\TestCase;
class CompositeTest extends TestCase
{
public function testBuild()
{
$factoryMock = $this->createMock(CopyConstructorFactory::class);
$constructorMock = $this->getMockForAbstractClass(CopyConstructorInterface::class);
$factoryMock->expects(
$this->exactly(2)
)->method(
'create'
)->with(
'constructorInstance'
)->willReturn(
$constructorMock
);
$productMock = $this->createMock(Product::class);
$duplicateMock = $this->createMock(Product::class);
$constructorMock->expects($this->exactly(2))->method('build')->with($productMock, $duplicateMock);
$model = new Composite(
$factoryMock,
['constructorInstance', 'constructorInstance']
);
$model->build($productMock, $duplicateMock);
}
}
Function Calls
None |
Stats
MD5 | a1a181da7b036b4209c38c859c49f851 |
Eval Count | 0 |
Decode Time | 113 ms |