function FormHelperTest::testProcessStates
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/Core/Form/FormHelperTest.php \Drupal\Tests\Core\Form\FormHelperTest::testProcessStates()
- 10 core/tests/Drupal/Tests/Core/Form/FormHelperTest.php \Drupal\Tests\Core\Form\FormHelperTest::testProcessStates()
- 11.x core/tests/Drupal/Tests/Core/Form/FormHelperTest.php \Drupal\Tests\Core\Form\FormHelperTest::testProcessStates()
@covers ::processStates @dataProvider providerElements
File
-
core/
tests/ Drupal/ Tests/ Core/ Form/ FormHelperTest.php, line 90
Class
- FormHelperTest
- @coversDefaultClass \Drupal\Core\Form\FormHelper @group Form
Namespace
Drupal\Tests\Core\FormCode
public function testProcessStates($elements, $key) {
$json = Json::encode($elements['#states']);
FormHelper::processStates($elements);
$this->assertEquals([
'core/drupal.states',
], $elements['#attached']['library']);
$this->assertEquals($json, $elements[$key]['data-drupal-states']);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.