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(); } }