b374k
m1n1 1.01
Apache/2.4.41 (Ubuntu)
Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
uid=33(www-data) gid=33(www-data) groups=33(www-data)
server ip : 62.171.164.128 | your ip : 127.0.0.1
safemode OFF
 >  / home / a / home / dev2.destoffenstraat.com / vendor / magento / framework / Pricing / Test / Unit / Price /
Filename/home/a/home/dev2.destoffenstraat.com/vendor/magento/framework/Pricing/Test/Unit/Price/PoolTest.php
Size2.29 kb
Permissionrw-r--r--
Ownerroot : root
Create time21-Aug-2025 12:26
Last modified07-Jan-2021 21:08
Last accessed23-Aug-2025 21:31
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Framework\Pricing\Test\Unit\Price;

use Magento\Framework\Pricing\Price\Pool;
use PHPUnit\Framework\TestCase;

/**
* Test for Pool
*/
class PoolTest extends TestCase
{
/**
* @var Pool
*/
protected $pool;

/**
* @var array
*/
protected $prices;

/**
* @var array
*/
protected $target;

/**
* \Iterator
*/
protected $targetPool;

/**
* Test setUp
*/
protected function setUp(): void
{
$this->prices = [
'regular_price' => 'RegularPrice',
'special_price' => 'SpecialPrice',
];
$this->target = [
'regular_price' => 'TargetRegularPrice',
];
$this->targetPool = new Pool($this->target);
$this->pool = new Pool($this->prices, $this->targetPool);
}

/**
* test mergedConfiguration
*/
public function testMergedConfiguration()
{
$expected = new Pool([
'regular_price' => 'RegularPrice',
'special_price' => 'SpecialPrice',
]);
$this->assertEquals($expected, $this->pool);
}

/**
* Test get method
*/
public function testGet()
{
$this->assertEquals('RegularPrice', $this->pool->get('regular_price'));
$this->assertEquals('SpecialPrice', $this->pool->get('special_price'));
}

/**
* Test abilities of ArrayAccess interface
*/
public function testArrayAccess()
{
$this->assertEquals('RegularPrice', $this->pool['regular_price']);
$this->assertEquals('SpecialPrice', $this->pool['special_price']);
$this->pool['fake_price'] = 'FakePrice';
$this->assertEquals('FakePrice', $this->pool['fake_price']);
$this->assertArrayHasKey('fake_price', $this->pool);
unset($this->pool['fake_price']);
$this->assertArrayNotHasKey('fake_price', $this->pool);
$this->assertNull($this->pool['fake_price']);
}

/**
* Test abilities of Iterator interface
*/
public function testIterator()
{
foreach ($this->pool as $code => $class) {
$this->assertEquals($this->pool[$code], $class);
}
}
}