You are here

sharedemail.test in Shared Email 7

Same filename and directory in other branches
  1. 5 tests/sharedemail.test
  2. 6 tests/sharedemail.test

File

tests/sharedemail.test
View source
<?php

class sharedemailTest extends DrupalTestCase {

  /**
   * Here there be fixtures.
   */
  public static function get_info() {
    return array(
      'name' => t('sharedemail Unit Tests'),
      'desc' => t('tests the unit functions of the sharedemail module'),
      'group' => t('DDh: sharedemail module'),
    );
  }

  /**
   * SetUp and tearDown functions to configure the fixtures.
   */
  public function setUp() {
  }

  /**
   * Post-test function.
   */
  public function tearDown() {
  }

  /**
   * This method tests sharedemail user.
   */
  public function testSharedemailUser() {
    $this
      ->assertFalse(1);

    // The test intentionally fails until you supply good code.
  }

  /**
   * This method tests sharedemail menu.
   */
  public function testSharedemailMenu() {
    $this
      ->assertFalse(1);

    // The test intentionally fails until you supply good code.
  }

  /**
   * This method tests sharedemail admin settings.
   */
  public function testSharedemailAdminSettings() {
    $this
      ->assertFalse(1);

    // The test intentionally fails until you supply good code.
  }

  /**
   * This method tests sharedemail perm.
   */
  public function testSharedemailPerm() {
    $this
      ->assertFalse(1);

    // The test intentionally fails until you supply good code.
  }

  /**
   * This method tests sharedemail access.
   */
  public function testSharedemailAccess() {
    $this
      ->assertFalse(1);

    // The test intentionally fails until you supply good code.
  }

  /**
   * This method tests sharedemail node info.
   */
  public function testSharedemailNodeInfo() {
    $this
      ->assertFalse(1);

    // The test intentionally fails until you supply good code.
  }

  /**
   * This method tests sharedemail form.
   */
  public function testSharedemailForm() {
    $this
      ->assertFalse(1);

    // The test intentionally fails until you supply good code.
  }

  /**
   * This method tests sharedemail insert.
   */
  public function testSharedemailInsert() {
    $this
      ->assertFalse(1);

    // The test intentionally fails until you supply good code.
  }

  /**
   * This method tests sharedemail update.
   */
  public function testSharedemailUpdate() {
    $this
      ->assertFalse(1);

    // The test intentionally fails until you supply good code.
  }

  /**
   * This method tests sharedemail delete.
   */
  public function testSharedemailDelete() {
    $this
      ->assertFalse(1);

    // The test intentionally fails until you supply good code.
  }

  /**
   * This method tests sharedemail load.
   */
  public function testSharedemailLoad() {
    $this
      ->assertFalse(1);

    // The test intentionally fails until you supply good code.
  }

  /**
   * This method tests sharedemail view.
   */
  public function testSharedemailView() {
    $this
      ->assertFalse(1);

    // The test intentionally fails until you supply good code.
  }

  /**
   * This method tests sharedemail block.
   */
  public function testSharedemailBock() {
    $this
      ->assertFalse(1);

    // The test intentionally fails until you supply good code.
  }

  /**
   * This method tests sharedemail simpletest.
   */
  public function testSharedemailSimpletest() {
    $this
      ->assertFalse(1);

    // The test intentionally fails until you supply good code.
  }

}

Classes

Namesort descending Description
sharedemailTest