public static function RolesRidTest::getInfo

This method exists to support the simpletest UI runner.

It should eventually be replaced with something native to phpunit.

Also, this method is empty because you can't have an abstract static method. Sub-classes should always override it.

Return value

array An array describing the test like so: array( 'name' => 'Something Test', 'description' => 'Tests Something', 'group' => 'Something', )

Overrides UnitTestCase::getInfo

File

drupal/core/modules/user/tests/Drupal/Tests/user/Views/Argument/RolesRidTest.php, line 36
Contains \Drupal\Tests\user\Views\Argument\RolesRidTest.

Class

RolesRidTest
Tests the roles argument handler.

Namespace

Drupal\Tests\user\Views\Argument

Code

public static function getInfo() {
  return array(
    'name' => 'User: Roles Rid Argument',
    'description' => 'Tests the role argument handler.',
    'group' => 'Views module integration',
  );
}