public static function ParagraphsPackTestCase::getInfo in Paragraphs pack 7
Give display information to the SimpleTest system.
getInfo() returns a keyed array of information for SimpleTest to show.
It's a good idea to organize your tests consistently using the 'group' key.
File
- tests/
paragraphs_pack.test, line 24 - Paragraphs pack primary module's tests.
Class
- ParagraphsPackTestCase
- Test Case for Paragraphs pack primary module.
Code
public static function getInfo() {
return array(
'name' => 'Paragraphs pack tests',
'description' => 'Tests: paragraph pack API.',
'group' => 'Paragraphs pack',
);
}