function StorageTest::testValidation

Tests validation when form storage is used.

File

drupal/core/modules/system/lib/Drupal/system/Tests/Form/StorageTest.php, line 98
Definition of Drupal\system\Tests\Form\StorageTest.

Class

StorageTest
Test the form storage on a multistep form.

Namespace

Drupal\system\Tests\Form

Code

function testValidation() {
  $this
    ->drupalPost('form_test/form-storage', array(
    'title' => '',
    'value' => 'value_is_set',
  ), 'Continue submit');
  $this
    ->assertPattern('/value_is_set/', 'The input values have been kept.');
}