Skip to content
Snippets Groups Projects
Commit 66a2ca89 authored by Daniel Wehner's avatar Daniel Wehner Committed by Tim Plunkett
Browse files

Issue #1799746 by dawehner: Remove leftover UserTest.php.

parent 92537b39
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
<?php
/**
* @file
* Definition of Drupal\views\Tests\User\UserTest.
*/
namespace Drupal\views\Tests\User;
/**
* Tests basic user module integration into views.
*/
class UserTest extends UserTestBase {
/**
* Users to use during this test.
*
* @var array
*/
protected $users = array();
/**
* Nodes to use during this test.
*
* @var array
*/
protected $nodes = array();
public static function getInfo() {
return array(
'name' => 'User: Basic integration',
'description' => 'Tests the integration of user.module.',
'group' => 'Views Modules',
);
}
protected function setUp() {
parent::setUp();
$this->users[] = $this->drupalCreateUser();
$this->users[] = user_load(1);
$this->nodes[] = $this->drupalCreateNode(array('uid' => $this->users[0]->uid));
$this->nodes[] = $this->drupalCreateNode(array('uid' => 1));
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment