HEX
Server: Apache
System: Linux dev.epsylon.net 3.10.0-1160.144.1.el7.tuxcare.els2.x86_64 #1 SMP Sun Feb 15 11:22:42 UTC 2026 x86_64
User: nexper (1054)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/nexper/www/nexper_drupal/sites/all/modules/webform/tests/components.test
<?php

/**
 * @file
 * Webform module component tests.
 */

include_once(dirname(__FILE__) . '/webform.test');

class WebformComponentsTestCase extends WebformTestCase {
  /**
   * Implements getInfo().
   */
  public static function getInfo() {
    return array(
      'name' => t('Webform components'),
      'description' => t('Add and remove components from a webform.'),
      'group' => t('Webform'),
    );
  }

  /**
   * Implements setUp().
   */
  function setUp() {
    parent::setUp();
  }

  /**
   * Implements testWebformDummy(). if it is not present,
   * then the test runs fine, but when combined with other tests
   * the whole block fails, since there would be no output.
   */
  function testWebformDummy() {
    $this->pass = t('WebformComponentsTest pass.');
  }
}