12345678910111213141516 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /** @var \Magento\Customer\Api\GroupRepositoryInterface $groupRepository */
- $groupRepository = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
- \Magento\Customer\Api\GroupRepositoryInterface::class
- );
- $groupFactory = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
- \Magento\Customer\Api\Data\GroupInterfaceFactory::class
- );
- $groupDataObject = $groupFactory->create();
- $groupDataObject->setCode('custom_group')->setTaxClassId(3);
- $groupRepository->save($groupDataObject);
|