public static function GraphTest::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/tests/Drupal/Tests/Component/Graph/GraphTest.php, line 21
Contains \Drupal\Tests\Component\Graph\GraphTest.

Class

GraphTest
Unit tests for the graph handling features.

Namespace

Drupal\Tests\Component\Graph

Code

public static function getInfo() {
  return array(
    'name' => 'Directed acyclic graph manipulation',
    'description' => 'Depth first search and sort unit tests.',
    'group' => 'Graph',
  );
}