You are here

hijri.test in Hijri 7

Same filename and directory in other branches
  1. 8 tests/hijri.test

Contains tests for the Hijri module.

File

tests/hijri.test
View 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

Namesort descending Description
HijriTestCase Test case.