public static function CommerceBaseTesterTestCase::getInfo in Commerce Core 7
getInfo() returns properties that are displayed in the test selection form.
File
- tests/
commerce_base.test, line 741 - Defines abstract base test class for the Commerce module tests.
Class
- CommerceBaseTesterTestCase
- Test class to test the CommerceBaseTestCase functions. All testTestFoo functions have "testTest" in the name to indicate that they are verifying that a test is working. Somewhat "meta" to do this, but it eases test development.
Code
public static function getInfo() {
return array(
'name' => t('Commerce base'),
'description' => t('Test the functionality of the base test class. Essentially, these are meta-tests.'),
'group' => t('Drupal Commerce'),
);
}