function PasswordTest::testValueCallback
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/Render/Element/PasswordTest.php \Drupal\Tests\Core\Render\Element\PasswordTest::testValueCallback()
- 10 core/tests/Drupal/Tests/Core/Render/Element/PasswordTest.php \Drupal\Tests\Core\Render\Element\PasswordTest::testValueCallback()
- 11.x core/tests/Drupal/Tests/Core/Render/Element/PasswordTest.php \Drupal\Tests\Core\Render\Element\PasswordTest::testValueCallback()
@covers ::valueCallback
@dataProvider providerTestValueCallback
File
-
core/
tests/ Drupal/ Tests/ Core/ Render/ Element/ PasswordTest.php, line 20
Class
- PasswordTest
- @coversDefaultClass \Drupal\Core\Render\Element\Password @group Render
Namespace
Drupal\Tests\Core\Render\ElementCode
public function testValueCallback($expected, $input) {
$element = [];
$form_state = $this->prophesize(FormStateInterface::class)
->reveal();
$this->assertSame($expected, Password::valueCallback($element, $input, $form_state));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.