hijri.test in Hijri 8
Same filename and directory in other branches
Contains tests for the Hijri module.
File
tests/hijri.testView source
<?php
/**
* @file
* Contains tests for the Hijri module.
*/
/**
* Test case.
*/
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!
}
}
Classes
Name | Description |
---|---|
HijriTestCase | Test case. |