public static function ParagraphsWebTestCase::getInfo in Paragraphs 7
Give display information to the SimpleTest system.
It's a good idea to organize your tests consistently using the 'group' key.
Return value
array A keyed array of information for SimpleTest to show.
File
- tests/
paragraphs.test, line 23
Class
- ParagraphsWebTestCase
- Defines tests for paragraphs.
Code
public static function getInfo() {
return array(
'name' => 'Paragraphs test',
'description' => 'Ensure that the simpletest_example content type provided functions properly.',
'group' => 'Paragraphs',
);
}