2015-04-19 16:46:59 +02:00

25 lines
479 B
Plaintext

<?php
/**
* Administration tests for my module.
*/
class ExtlinkAdministrationTestCase extends DrupalWebTestCase {
/**
* Implements getInfo().
*/
public static function getInfo() {
return array (
'name' => t('Administration'),
'description' => t('Administration tests for my module.'),
'group' => t('External Links'),
);
}
public function
setUp() {
// Enable any module that you will need in your tests.
parent::setUp();
}
}
?>