| Current Path : /home/rtorresani/www/dev/tests/integration/testsuite/Magento/Eav/_files/ |
| Current File : //home/rtorresani/www/dev/tests/integration/testsuite/Magento/Eav/_files/empty_attribute_set.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
$objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
/** @var \Magento\Eav\Model\Entity\Attribute\Set $attributeSet */
$attributeSet = $objectManager->create(\Magento\Eav\Model\Entity\Attribute\Set::class);
$entityTypeId = $objectManager->create(\Magento\Eav\Model\Entity\Type::class)->loadByCode('catalog_product')->getId();
$attributeSet->setData([
'attribute_set_name' => 'empty_attribute_set',
'entity_type_id' => $entityTypeId,
'sort_order' => 200,
]);
$attributeSet->validate();
$attributeSet->save();