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\Backend\Test\Unit\Model\Dashboard;

use Magento\Backend\Model\Dashboard\Period;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use PHPUnit\Framework\TestCase;

class PeriodTest extends TestCase
{
    /**
     * @var Period
     */
    private $model;

    /**
     * @inheritDoc
     */
    protected function setUp(): void
    {
        $objectManager = new ObjectManager($this);
        $this->model = $objectManager->getObject(
            Period::class,
            []
        );
    }

    /**
     * Test getDatePeriods() method
     */
    public function testGetDatePeriods()
    {
        $this->assertEquals(
            [
                Period::PERIOD_TODAY => (string)__('Today'),
                Period::PERIOD_24_HOURS => (string)__('Last 24 Hours'),
                Period::PERIOD_7_DAYS => (string)__('Last 7 Days'),
                Period::PERIOD_1_MONTH => (string)__('Current Month'),
                Period::PERIOD_1_YEAR => (string)__('YTD'),
                Period::PERIOD_2_YEARS => (string)__('2YTD')
            ],
            $this->model->getDatePeriods()
        );
    }
}
 ?>

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\Backend\Test\Unit\Model\Dashboard;

use Magento\Backend\Model\Dashboard\Period;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use PHPUnit\Framework\TestCase;

class PeriodTest extends TestCase
{
    /**
     * @var Period
     */
    private $model;

    /**
     * @inheritDoc
     */
    protected function setUp(): void
    {
        $objectManager = new ObjectManager($this);
        $this->model = $objectManager->getObject(
            Period::class,
            []
        );
    }

    /**
     * Test getDatePeriods() method
     */
    public function testGetDatePeriods()
    {
        $this->assertEquals(
            [
                Period::PERIOD_TODAY => (string)__('Today'),
                Period::PERIOD_24_HOURS => (string)__('Last 24 Hours'),
                Period::PERIOD_7_DAYS => (string)__('Last 7 Days'),
                Period::PERIOD_1_MONTH => (string)__('Current Month'),
                Period::PERIOD_1_YEAR => (string)__('YTD'),
                Period::PERIOD_2_YEARS => (string)__('2YTD')
            ],
            $this->model->getDatePeriods()
        );
    }
}

Function Calls

None

Variables

None

Stats

MD5 4fcc6eb988f83998f91fd29e3363811f
Eval Count 0
Decode Time 87 ms