You are here

filehash.test in File Hash 7

Tests for File Hash module.

File

filehash.test
View source
<?php

/**
 * @file
 * Tests for File Hash module.
 */

/**
 * Tests File Hash module.
 */
class FileHashTestCase extends DrupalWebTestCase {

  /**
   * {@inheritdoc}
   */
  public static function getInfo() {
    return array(
      'name' => 'File Hash',
      'description' => 'Tests for File Hash module.',
      'group' => 'File Hash',
    );
  }

  /**
   * Enable modules.
   */
  public function setUp() {
    parent::setUp(array(
      'filehash',
    ));
  }

  /**
   * Tests File Hash module functionality.
   */
  public function testFileHash() {
  }

}

Classes

Namesort descending Description
FileHashTestCase Tests File Hash module.