You are here

public static function LibrariesLoadWebTest::getInfo in Libraries API 7.2

Provides metadata about this test.

Return value

array An array of test metadata with the following keys:

  • name: The name of the test.
  • description: The description of the test.
  • group: The group of the test.

File

tests/LibrariesLoadWebTest.test, line 28
Contains LibrariesLoadWebTest.

Class

LibrariesLoadWebTest
Tests basic detection and loading of libraries.

Code

public static function getInfo() {
  return array(
    'name' => 'Libraries detection and loading',
    'description' => 'Tests detection and loading of libraries.',
    'group' => 'Libraries API',
  );
}