12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Model;
- class GroupTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Customer\Model\Group
- */
- protected $groupModel;
- /**
- * @var \Magento\Customer\Api\Data\GroupInterfaceFactory
- */
- protected $groupFactory;
- protected function setUp()
- {
- $this->groupModel = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
- \Magento\Customer\Model\Group::class
- );
- $this->groupFactory = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
- \Magento\Customer\Api\Data\GroupInterfaceFactory::class
- );
- }
- public function testCRUD()
- {
- $this->groupModel->setCode('test');
- $crud = new \Magento\TestFramework\Entity($this->groupModel, ['customer_group_code' => uniqid()]);
- $crud->testCrud();
- }
- }
|