public function FormStateTest::providerTestSetErrorByName in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Form/FormStateTest.php \Drupal\Tests\Core\Form\FormStateTest::providerTestSetErrorByName()
File
- core/
tests/ Drupal/ Tests/ Core/ Form/ FormStateTest.php, line 119 - Contains \Drupal\Tests\Core\Form\FormStateTest.
Class
- FormStateTest
- @coversDefaultClass \Drupal\Core\Form\FormState
Namespace
Drupal\Tests\Core\FormCode
public function providerTestSetErrorByName() {
return [
// Only validate the 'options' element.
[
[
[
'options',
],
],
[
'options' => '',
],
],
// Do not limit an validation, and, ensuring the first error is returned
// for the 'test' element.
[
NULL,
[
'test' => 'Fail 1',
'options' => '',
],
],
// Limit all validation.
[
[],
[],
],
];
}