[ Index ]

PHP Cross Reference of Drupal 6 (gatewave)

title

Body

[close]

/sites/all/modules/webform/tests/ -> components.test (source)

   1  <?php
   2  // $Id$
   3  
   4  /**
   5   * @file
   6   * Webform module component tests.
   7   */
   8  
   9  include_once(dirname(__FILE__) . '/webform.test');
  10  
  11  class WebformComponentsTestCase extends WebformTestCase {
  12    /**
  13     * Implementation of getInfo().
  14     */
  15    public static function getInfo() {
  16      return array(
  17        'name' => t('Webform components'),
  18        'description' => t('Add and remove components from a webform.'),
  19        'group' => t('Webform'),
  20      );
  21    }
  22  
  23    /**
  24     * Implementation of setUp().
  25     */
  26    function setUp() {
  27      parent::setUp();
  28    }
  29  
  30    /**
  31     * Implementation of testWebformDummy(). if it is not present,
  32     * then the test runs fine, but when combined with other tests
  33     * the whole block fails, since there would be no output.
  34     */
  35    function testWebformDummy() {
  36      $this->pass = t('WebformComponentsTest pass.');
  37    }
  38  }


Generated: Thu Mar 24 11:18:33 2011 Cross-referenced by PHPXref 0.7