RoleUserTestBase.php
Same filename in other branches
Namespace
Drupal\Tests\user\Unit\Plugin\ActionFile
-
core/
modules/ user/ tests/ src/ Unit/ Plugin/ Action/ RoleUserTestBase.php
View source
<?php
namespace Drupal\Tests\user\Unit\Plugin\Action;
use Drupal\Tests\UnitTestCase;
/**
* Provides a base class for user role action tests.
*/
abstract class RoleUserTestBase extends UnitTestCase {
/**
* The mocked account.
*
* @var \Drupal\user\UserInterface|\PHPUnit\Framework\MockObject\MockObject
*/
protected $account;
/**
* The user role entity type.
*
* @var \Drupal\Core\Entity\EntityTypeInterface|\PHPUnit\Framework\MockObject\MockObject
*/
protected $userRoleEntityType;
/**
* {@inheritdoc}
*/
protected function setUp() {
parent::setUp();
$this->account = $this->getMockBuilder('Drupal\\user\\Entity\\User')
->disableOriginalConstructor()
->getMock();
$this->userRoleEntityType = $this->createMock('Drupal\\Core\\Entity\\EntityTypeInterface');
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
RoleUserTestBase | Provides a base class for user role action tests. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.