12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Authorization\Model;
- /**
- * @magentoAppArea adminhtml
- */
- class RoleTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Authorization\Model\Role
- */
- protected $_model = null;
- protected function setUp()
- {
- $this->_model = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()
- ->create(\Magento\Authorization\Model\Role::class);
- }
- public function testGetRoleUsers()
- {
- $this->assertEmpty($this->_model->getRoleUsers());
- $this->_model->load(\Magento\TestFramework\Bootstrap::ADMIN_ROLE_NAME, 'role_name');
- $this->assertNotEmpty($this->_model->getRoleUsers());
- }
- }
|