public static function ViewUIObjectTest::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/views_ui/tests/Drupal/views_ui/Tests/ViewUIObjectTest.php, line 27
Contains \Drupal\views_ui\Tests\ViewUIObjectTest.

Class

ViewUIObjectTest
Tests the ViewUI class.

Namespace

Drupal\views_ui\Tests

Code

public static function getInfo() {
  return array(
    'name' => 'View UI Object',
    'description' => 'Test the ViewUI class.',
    'group' => 'Views UI',
  );
}