public function StorageTest::testValidation in Drupal 8
Same name and namespace in other branches
- 9 core/modules/system/tests/src/Functional/Form/StorageTest.php \Drupal\Tests\system\Functional\Form\StorageTest::testValidation()
Tests validation when form storage is used.
File
- core/
modules/ system/ tests/ src/ Functional/ Form/ StorageTest.php, line 102
Class
- StorageTest
- Tests a multistep form using form storage and makes sure validation and caching works right.
Namespace
Drupal\Tests\system\Functional\FormCode
public function testValidation() {
$this
->drupalPostForm('form_test/form-storage', [
'title' => '',
'value' => 'value_is_set',
], 'Continue submit');
// Ensure that the input values have been kept.
$this
->assertPattern('/value_is_set/');
}