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\Form
Code
public function providerTestSetErrorByName() {
  return [
    
    [
      [
        [
          'options',
        ],
      ],
      [
        'options' => '',
      ],
    ],
    
    [
      NULL,
      [
        'test' => 'Fail 1',
        'options' => '',
      ],
    ],
    
    [
      [],
      [],
    ],
  ];
}