RoleUserTestBase.php

Same filename and directory in other branches
  1. 9 core/modules/user/tests/src/Unit/Plugin/Action/RoleUserTestBase.php
  2. 8.9.x core/modules/user/tests/src/Unit/Plugin/Action/RoleUserTestBase.php
  3. 10 core/modules/user/tests/src/Unit/Plugin/Action/RoleUserTestBase.php

Namespace

Drupal\Tests\user\Unit\Plugin\Action

File

core/modules/user/tests/src/Unit/Plugin/Action/RoleUserTestBase.php

View source
<?php

declare (strict_types=1);
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() : void {
    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.