$this->context =
$this->
getContainer()->
get(SalesChannelContextFactory::
class) ->
create('test', TestDefaults::SALES_CHANNEL
);
$this->loader =
$this->
getContainer()->
get(ProductConfiguratorLoader::
class);
parent::
setUp();
} public function testDefaultOrder(): void
{ $groupNames =
$this->
getOrder();
static::
assertEquals(['a', 'b', 'c', 'd', 'e', 'f'
],
$groupNames);
} public function testGroupPositionOrder(): void
{ $groupNames =
$this->
getOrder(['f', 'e', 'd', 'c', 'b', 'a'
]);
static::
assertEquals(['f', 'e', 'd', 'c', 'b', 'a'
],
$groupNames);
} public function testConfiguratorGroupConfigOrder(): void
{