![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/app/code/Amasty/Base/Test/Unit/Model/Import/Mapping/ |
<?php /** * @author Amasty Team * @copyright Copyright (c) Amasty (https://www.amasty.com) * @package Magento 2 Base Package */ namespace Amasty\Base\Test\Unit\Model\Import\Mapping; use Amasty\Base\Model\Import\Mapping\Mapping; use Amasty\Base\Test\Unit\Traits; use PHPUnit\Framework\MockObject\MockObject; /** * Class MappingTest * * @see Mapping * * @SuppressWarnings(PHPMD.CouplingBetweenObjects) * phpcs:ignoreFile */ class MappingTest extends \PHPUnit\Framework\TestCase { use Traits\ObjectManagerTrait; use Traits\ReflectionTrait; /** * @covers Mapping::processedMapping */ public function testProcessedMapping() { $model = $this->getObjectManager()->getObject(Mapping::class); $this->setProperty($model, 'processedMapping', null, Mapping::class); $this->setProperty($model, 'mappings', ['test', 'key' => 'value']); $this->assertEquals(['test' => 'test', 'key' => 'value'], $model->processedMapping()); $this->setProperty($model, 'processedMapping', 'test', Mapping::class); $this->assertEquals('test', $model->processedMapping()); } }