class UserTestBase

Same name and namespace in other branches
  1. 11.x core/modules/user/tests/src/Functional/Views/UserTestBase.php \Drupal\Tests\user\Functional\Views\UserTestBase
  2. 10 core/modules/user/tests/src/Functional/Views/UserTestBase.php \Drupal\Tests\user\Functional\Views\UserTestBase
  3. 8.9.x core/modules/user/tests/src/Functional/Views/UserTestBase.php \Drupal\Tests\user\Functional\Views\UserTestBase

@todo.

Hierarchy

Expanded class hierarchy of UserTestBase

File

core/modules/user/tests/src/Functional/Views/UserTestBase.php, line 11

Namespace

Drupal\Tests\user\Functional\Views
View source
abstract class UserTestBase extends ViewTestBase {
  
  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = [
    'user_test_views',
    'node',
  ];
  
  /**
   * Users to use during this test.
   *
   * @var array
   */
  protected $users = [];
  
  /**
   * Nodes to use during this test.
   *
   * @var array
   */
  protected $nodes = [];
  
  /**
   * {@inheritdoc}
   */
  protected function setUp($import_test_views = TRUE, $modules = [
    'user_test_views',
  ]) {
    parent::setUp($import_test_views, $modules);
    $this->users[] = $this->drupalCreateUser();
    $this->users[] = User::load(1);
    $this->nodes[] = $this->drupalCreateNode([
      'uid' => $this->users[0]
        ->id(),
    ]);
    $this->nodes[] = $this->drupalCreateNode([
      'uid' => 1,
    ]);
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.