class HijriTestCase in Hijri 8
Same name and namespace in other branches
- 7 tests/hijri.test \HijriTestCase
Test case.
Hierarchy
- class \HijriTestCase extends \DrupalWebTestCase
Expanded class hierarchy of HijriTestCase
File
- tests/
hijri.test, line 11 - Contains tests for the Hijri module.
View source
class HijriTestCase extends DrupalWebTestCase {
/**
* Implements getInfo().
*/
public static function getInfo() {
return array(
'name' => t('Hijri tests'),
'description' => t('TODO: write me.'),
'group' => t('Hijri'),
);
}
/**
* Implements setUp().
*/
function setUp() {
// Call the parent with an array of modules to enable for the test.
parent::setUp(array(
'hijri',
));
// TODO: perform additional setup tasks here if required.
}
/**
* Test the module's functionality.
*/
function testTodoChangeThisName() {
// TODO: write test!
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
HijriTestCase:: |
public static | function | Implements getInfo(). | |
HijriTestCase:: |
function | Implements setUp(). | ||
HijriTestCase:: |
function | Test the module's functionality. |