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\Analytics\Test\Unit\Model\ReportXml;
use Magento\Analytics\Model\ReportXml\ModuleIterator;
use Magento\Framework\Module\Manager as ModuleManager;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager as ObjectManagerHelper;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class ModuleIteratorTest extends TestCase
{
/**
* @var ModuleManager|MockObject
*/
private $moduleManagerMock;
/**
* @var ModuleIterator|MockObject
*/
private $moduleIterator;
protected function setUp(): void
{
$this->moduleManagerMock = $this->createMock(ModuleManager::class);
$objectManagerHelper = new ObjectManagerHelper($this);
$this->moduleIterator = $objectManagerHelper->getObject(
ModuleIterator::class,
[
'moduleManager' => $this->moduleManagerMock,
'iterator' => new \ArrayIterator([0 => ['module_name' => 'Coco_Module']])
]
);
}
public function testCurrent()
{
$this->moduleManagerMock->expects($this->once())
->method('isEnabled')
->with('Coco_Module')
->willReturn(true);
foreach ($this->moduleIterator as $item) {
$this->assertEquals(['module_name' => 'Coco_Module', 'status' => 'Enabled'], $item);
}
}
}
?>
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\Analytics\Test\Unit\Model\ReportXml;
use Magento\Analytics\Model\ReportXml\ModuleIterator;
use Magento\Framework\Module\Manager as ModuleManager;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager as ObjectManagerHelper;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class ModuleIteratorTest extends TestCase
{
/**
* @var ModuleManager|MockObject
*/
private $moduleManagerMock;
/**
* @var ModuleIterator|MockObject
*/
private $moduleIterator;
protected function setUp(): void
{
$this->moduleManagerMock = $this->createMock(ModuleManager::class);
$objectManagerHelper = new ObjectManagerHelper($this);
$this->moduleIterator = $objectManagerHelper->getObject(
ModuleIterator::class,
[
'moduleManager' => $this->moduleManagerMock,
'iterator' => new \ArrayIterator([0 => ['module_name' => 'Coco_Module']])
]
);
}
public function testCurrent()
{
$this->moduleManagerMock->expects($this->once())
->method('isEnabled')
->with('Coco_Module')
->willReturn(true);
foreach ($this->moduleIterator as $item) {
$this->assertEquals(['module_name' => 'Coco_Module', 'status' => 'Enabled'], $item);
}
}
}
Function Calls
None |
Stats
MD5 | 38416dc5bb558bb219441784fc6991f2 |
Eval Count | 0 |
Decode Time | 108 ms |