UserTestBase.php

Same filename and directory in other branches
  1. 9 core/modules/user/tests/src/Functional/Views/UserTestBase.php
  2. 10 core/modules/user/tests/src/Functional/Views/UserTestBase.php
  3. 11.x core/modules/user/tests/src/Functional/Views/UserTestBase.php

Namespace

Drupal\Tests\user\Functional\Views

File

core/modules/user/tests/src/Functional/Views/UserTestBase.php

View source
<?php

namespace Drupal\Tests\user\Functional\Views;

use Drupal\Tests\views\Functional\ViewTestBase;
use Drupal\views\Tests\ViewTestData;
use Drupal\user\Entity\User;

/**
 * @todo.
 */
abstract class UserTestBase extends ViewTestBase {
    
    /**
     * Modules to enable.
     *
     * @var array
     */
    public 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 = [];
    protected function setUp($import_test_views = TRUE) {
        parent::setUp($import_test_views);
        ViewTestData::createTestViews(get_class($this), [
            'user_test_views',
        ]);
        $this->users[] = $this->drupalCreateUser();
        $this->users[] = User::load(1);
        $this->nodes[] = $this->drupalCreateNode([
            'uid' => $this->users[0]
                ->id(),
        ]);
        $this->nodes[] = $this->drupalCreateNode([
            'uid' => 1,
        ]);
    }

}

Classes

Title Deprecated Summary
UserTestBase @todo.

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