You are here

public function FormStateTest::providerTestSetErrorByName in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Form/FormStateTest.php \Drupal\Tests\Core\Form\FormStateTest::providerTestSetErrorByName()
  2. 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\Form

Code

public function providerTestSetErrorByName() {
  return [
    // Only validate the 'options' element.
    [
      [
        [
          'options',
        ],
      ],
      [
        'options' => '',
      ],
    ],
    // Do not limit a validation, ensure the first error is returned
    // for the 'test' element.
    [
      NULL,
      [
        'test' => 'Fail 1',
        'options' => '',
      ],
    ],
    // Limit all validation.
    [
      [],
      [],
    ],
  ];
}