use Shopware\Core\Framework\Struct\Collection;
use Shopware\Core\Framework\Struct\Struct;
/**
* @internal
*/
class CollectionTest extends TestCase
{ public function testConstructor(): void
{ $elements =
['a', 'b'
];
$collection =
new TestCollection($elements);
static::
assertEquals($elements,
$collection->
getElements());
} public function testConstructorKeepingKeys(): void
{ $elements =
['z' => 'a', 'y' => 'b'
];
$collection =
new TestCollection($elements);
static::
assertEquals($elements,
$collection->
getElements());
}