WrapperTest.php

Definition of Drupal\system\Tests\Form\WrapperTest.

Namespace

Drupal\system\Tests\Form

File

drupal/core/modules/system/lib/Drupal/system/Tests/Form/WrapperTest.php
View source
<?php

/**
 * @file
 * Definition of Drupal\system\Tests\Form\WrapperTest.
 */
namespace Drupal\system\Tests\Form;

use Drupal\simpletest\WebTestBase;

/**
 * Test wrapper form callbacks.
 */
class WrapperTest extends WebTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'form_test',
  );
  public static function getInfo() {
    return array(
      'name' => 'Form wrapper callback',
      'description' => 'Tests form wrapper callbacks to pass a prebuilt form to form builder functions.',
      'group' => 'Form API',
    );
  }

  /**
   * Tests using the form in a usual way.
   */
  function testWrapperCallback() {
    $this
      ->drupalGet('form_test/wrapper-callback');
    $this
      ->assertText('Form wrapper callback element output.', 'The form contains form wrapper elements.');
    $this
      ->assertText('Form builder element output.', 'The form contains form builder elements.');
  }

}

Classes

Namesort descending Description
WrapperTest Test wrapper form callbacks.