You are here

public function FormStateTest::providerTestSetErrorByName in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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 array(
    // Only validate the 'options' element.
    array(
      array(
        array(
          'options',
        ),
      ),
      array(
        '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.
    array(
      array(),
      array(),
    ),
  );
}