You are here

public static function LibrariesUnitTest::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/LibrariesUnitTest.test, line 28
Contains LibrariesUnitTest.

Class

LibrariesUnitTest
Tests basic Libraries API functions.

Code

public static function getInfo() {
  return array(
    'name' => 'Libraries API unit tests',
    'description' => 'Tests basic functions provided by Libraries API.',
    'group' => 'Libraries API',
  );
}