extlink.test 479 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Administration tests for my module.
  4. */
  5. class ExtlinkAdministrationTestCase extends DrupalWebTestCase {
  6. /**
  7. * Implements getInfo().
  8. */
  9. public static function getInfo() {
  10. return array (
  11. 'name' => t('Administration'),
  12. 'description' => t('Administration tests for my module.'),
  13. 'group' => t('External Links'),
  14. );
  15. }
  16. public function
  17. setUp() {
  18. // Enable any module that you will need in your tests.
  19. parent::setUp();
  20. }
  21. }
  22. ?>