You are here

protected function AccessPermissionTest::setUp in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/user/tests/src/Kernel/Views/AccessPermissionTest.php \Drupal\Tests\user\Kernel\Views\AccessPermissionTest::setUp()

Overrides KernelTestBase::setUp

File

core/modules/user/tests/src/Kernel/Views/AccessPermissionTest.php, line 56

Class

AccessPermissionTest
Tests views perm access plugin.

Namespace

Drupal\Tests\user\Kernel\Views

Code

protected function setUp() : void {
  parent::setUp();
  $this
    ->installSchema('system', [
    'sequences',
  ]);
  $this
    ->installEntitySchema('user');
  $this
    ->installEntitySchema('node');

  // Create first UID1 so, the other users are not super-admin.
  $this
    ->createUser([], NULL, FALSE, [
    'uid' => 1,
  ]);
  $this->webUser = $this
    ->createUser();
  $this->normalUser = $this
    ->createUser([
    'views_test_data test permission',
  ]);
  ViewTestData::createTestViews(static::class, [
    'user_test_views',
  ]);
}