components.test 788 B

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