public static function FieldPlaceholderTestCase::getInfo in Field placeholder 7
Same name and namespace in other branches
- 7.2 field_placeholder.test \FieldPlaceholderTestCase::getInfo()
The getInfo() method provides information about the test.
In order for the test to be run, the getInfo() method needs to be implemented.
File
- ./
field_placeholder.test, line 16 - File that holds functional tests for Field placeholder module.
Class
- FieldPlaceholderTestCase
- @file File that holds functional tests for Field placeholder module.
Code
public static function getInfo() {
return array(
'name' => t('Field placeholder basic'),
'description' => t('Tests basic module functionality.'),
'group' => 'Field placeholder',
);
}