You are here

public static function PrivatemsgAPITestCase::getInfo in Privatemsg 7

Same name and namespace in other branches
  1. 6.2 privatemsg.test \PrivatemsgAPITestCase::getInfo()
  2. 6 tests/privatemsgapi.test \PrivatemsgAPITestCase::getInfo()
  3. 7.2 privatemsg.test \PrivatemsgAPITestCase::getInfo()

Implements getInfo().

File

./privatemsg.test, line 1303
Test file for privatemsg.module

Class

PrivatemsgAPITestCase
Privatemsg API tests

Code

public static function getInfo() {
  return array(
    // 'name' should start with what is being tested (menu item) followed by what about it
    // is being tested (creation/deletion).
    'name' => t('Privatemsg API functionality.'),
    // 'description' should be one or more complete sentences that provide more details on what
    // exactly is being tested.
    'description' => t('Test sending, receiving, listing, deleting messages and other features via API.'),
    // 'group' should be a logical grouping of test cases, like a category.  In most cases, that
    // is the module the test case is for.
    'group' => t('Privatemsg'),
  );
}