You are here

class HijriTestCase in Hijri 8

Same name and namespace in other branches
  1. 7 tests/hijri.test \HijriTestCase

Test case.

Hierarchy

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

Namesort descending Modifiers Type Description Overrides
HijriTestCase::getInfo public static function Implements getInfo().
HijriTestCase::setUp function Implements setUp().
HijriTestCase::testTodoChangeThisName function Test the module's functionality.