function PrivatemsgTestCase::getInfo in Privatemsg 6.2
Same name and namespace in other branches
- 6 privatemsg.test \PrivatemsgTestCase::getInfo()
- 7.2 privatemsg.test \PrivatemsgTestCase::getInfo()
- 7 privatemsg.test \PrivatemsgTestCase::getInfo()
Implements getInfo().
File
- ./
privatemsg.test, line 11 - Test file for privatemsg.module
Class
- PrivatemsgTestCase
- @file Test file for privatemsg.module
Code
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 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.'),
// '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'),
);
}