public function PasswordTest::testValueCallback in Drupal 9
Same name and namespace in other branches
- 8 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));
}