You are here

public static function FaqTestCase::getInfo in Frequently Asked Questions 7

Same name and namespace in other branches
  1. 6 faq.test \FaqTestCase::getInfo()
  2. 7.2 faq.test \FaqTestCase::getInfo()

Implementation of getInfo().

3 methods override FaqTestCase::getInfo()
CRAUDFaqTestCase::getInfo in ./faq.test
Implementation of getInfo().
CreateFaqTestCase::getInfo in ./faq.test
Implementation of getInfo().
FaqAccessTestClass::getInfo in ./faq.test
Implementation of getInfo().

File

./faq.test, line 22
Test FAQ functionality Base test class. All tests inherits this one. Hugely based on code from the test file block.test by boombatower

Class

FaqTestCase
Base class that is extended by test cases

Code

public static function getInfo() {
  return array(
    'name' => t('FAQ functionality'),
    'description' => t('Base class. No tests here.'),
    'group' => t('Frequently Asked Questions'),
  );
}